In [12]:
# convert SemEval data to the standard format
from glob import glob
import codecs
from xml.etree import ElementTree as et
from traceback import format_exc
from collections import defaultdict
from nltk.corpus import wordnet as wn
from traceback import format_exc
def get_related_by_sensekey(sense_key, verbose=False):
""" from sense key like 'window%1:06:00::' return list of related words """
related = []
try:
sense_key = sense_key.split("/")[0]
synset = wn.lemma_from_key(sense_key).synset()
lemmas = synset.lemma_names()
definition = synset.definition()
examples = synset.examples()
hypernyms = []
for hypernym in synset.hypernyms():
for lemma in hypernym.lemmas():
hypernyms.append(lemma.name())
hyponyms = []
for hyponym in synset.hyponyms():
for lemma in hyponym.lemmas():
hyponyms.append(lemma.name())
related = lemmas + hyponyms + hypernyms
related = [r.lower().replace("_"," ") for r in related]
if verbose:
print "synset:", lemmas
print "definition:", definition
print "examples:", examples
print "hypernyms:", hypernyms
print "hyponyms:", hyponyms
print "related:", related
except:
print "Bad key:", sense_key
print format_exc()
return set(related)
def semeval_xml2csv(contexts_fpaths, keys_fpath, output_fpath):
# get keys
with codecs.open(keys_fpath, "r", "utf-8") as keys:
context_id2sense_ids = {}
for line in keys:
try:
fields = line.split()
target = fields[0]
context_id = fields[1]
golden_sense_ids = fields[2:]
context_id2sense_ids[context_id] = golden_sense_ids
except:
print "bad line: '%s'" % line.strip()
print format_exc()
# parse xml
# "<instance id="appear.v.1" lemma="appear" partOfSpeech="v" token="appear" tokenEnd="65" tokenStart="59">Tone it down a tad, or at least bring a froth cup when you appear before cameras.)</instance>"
with codecs.open(output_fpath, "w", "utf-8") as out:
print >> out, "context_id\ttarget\ttarget_pos\ttarget_position\tgold_sense_ids\tpredict_sense_ids\tgolden_related\tpredict_related\tcontext"
for word_fpath in glob(contexts_fpaths):
#print word_fpath
tree = et.parse(word_fpath)
root = tree.getroot()
for child in root:
if child.tag == "instance":
golden_related = set()
for sense_key in context_id2sense_ids[child.attrib["id"]]:
golden_related = golden_related.union(get_related_by_sensekey(sense_key))
#print child.attrib["lemma"], ">>>", golden_related
print >> out, "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s" % (
child.attrib["id"],
child.attrib["lemma"],
child.attrib["partOfSpeech"],
child.attrib["tokenStart"]+ "," + child.attrib["tokenEnd"],
",".join(context_id2sense_ids[child.attrib["id"]]),
"",
",".join(golden_related),
"",
child.text)
print output_fpath
contexts_fpaths = "/Users/alex/work/joint/eval/contextualization-eval/semeval_2013_13/contexts/xml-format/*.xml"
keys_fpath = "/Users/alex/work/joint/eval/contextualization-eval/semeval_2013_13/keys/gold/all.key"
output_fpath = "/Users/alex/Desktop/output-semeval-2013.csv"
semeval_xml2csv(contexts_fpaths, keys_fpath, output_fpath)
Bad key: lose%2:30:05::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'lose%2:30:05::'
Bad key: number%1:10:07::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'number%1:10:07::'
Bad key: part%1:06:01::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'part%1:06:01::'
Bad key: power%1:19:01::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'power%1:19:01::'
Bad key: power%1:19:01::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'power%1:19:01::'
Bad key: power%1:19:01::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'power%1:19:01::'
Bad key: power%1:19:01::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'power%1:19:01::'
Bad key: win%2:40:06::
Traceback (most recent call last):
File "<ipython-input-12-9102932fc733>", line 20, in get_related_by_sensekey
synset = wn.lemma_from_key(sense_key).synset()
File "/usr/local/lib/python2.7/site-packages/nltk/corpus/reader/wordnet.py", line 1202, in lemma_from_key
raise WordNetError("No synset found for key %r" % key)
WordNetError: No synset found for key u'win%2:40:06::'
/Users/alex/Desktop/output-semeval-2013.csv
In [19]:
import codecs
from pandas import read_csv
dataset_fpath = "/Users/alex/work/joint/eval/contextualization-eval/data/Dataset-SemEval-2013-13-adagram-ukwac-wacky-raw.csv"
output_fpath = "/Users/alex/Desktop/adagram.key"
/Users/alex/Desktop/adagram.key
In [16]:
import codecs
from pandas import read_csv
import argparse
#def evaluate_related(dataset_fpath):
dataset_fpath = "/Users/alex/work/joint/eval/contextualization-eval/data/Dataset-SemEval-2013-13-adagram-ukwac-wacky-raw.csv"
df = read_csv(dataset_fpath, encoding='utf-8', delimiter="\t", error_bad_lines=False)
for i, row in df.iterrows():
try:
golden = set(row.golden_related.split(","))
predicted = set(row.predict_related.split(",")[:50])
print row.target.upper()
print "golden (%d): %s" % (len(golden), golden)
print "\npredicted (%d): %s" % (len(predicted), predicted)
print "\nintersection (%d): %s" % (len(golden.intersection(predicted)), golden.intersection(predicted))
print "\n\n"
except:
pass
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (15): set([u'count', u'tote up', u'sum', u'tally', u'add together', u'tot', u'number', u'add up', u'add', u'summate', u'tot up', u'enumerate', u'sum up', u'total', u'numerate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (1): set([u'modify'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (11): set([u'cypher', u'compute', u'calculate', u'figure', u'reckon', u'foot up', u'add together', u'add', u'cipher', u'foot', u'work out'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (2): set([u'compute', u'calculate'])
ADD
golden (11): set([u'cypher', u'compute', u'calculate', u'figure', u'reckon', u'foot up', u'add together', u'add', u'cipher', u'foot', u'work out'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (11): set([u'cypher', u'compute', u'calculate', u'figure', u'reckon', u'foot up', u'add together', u'add', u'cipher', u'foot', u'work out'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (2): set([u'compute', u'calculate'])
ADD
golden (15): set([u'count', u'tote up', u'sum', u'tally', u'add together', u'tot', u'number', u'add up', u'add', u'summate', u'tot up', u'enumerate', u'sum up', u'total', u'numerate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (40): set([u'supply', u'add on', u'say', u'string up', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'append', u'sneak in', u'slip in', u'add', u'mark', u'increase', u'mix', u'state', u'combine', u'adjoin', u'stud', u'mix in', u'include', u'tell', u'inject', u'concatenate', u'gild the lily', u'string', u'enrich', u'modify', u'qualify', u'compound', u'insert', u'punctuate', u'work in', u'button', u'stick in', u'supplement', u'welt', u'toss in', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (15): set([u'count', u'tote up', u'sum', u'tally', u'add together', u'tot', u'number', u'add up', u'add', u'summate', u'tot up', u'enumerate', u'sum up', u'total', u'numerate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (15): set([u'count', u'tote up', u'sum', u'tally', u'add together', u'tot', u'number', u'add up', u'add', u'summate', u'tot up', u'enumerate', u'sum up', u'total', u'numerate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (0): set([])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (1): set([u'modify'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (3): set([u'contribute', u'alter', u'lend'])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (3): set([u'contribute', u'alter', u'lend'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (15): set([u'count', u'tote up', u'sum', u'tally', u'add together', u'tot', u'number', u'add up', u'add', u'summate', u'tot up', u'enumerate', u'sum up', u'total', u'numerate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (40): set([u'supply', u'add on', u'say', u'string up', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'append', u'sneak in', u'slip in', u'add', u'mark', u'increase', u'mix', u'state', u'combine', u'adjoin', u'stud', u'mix in', u'include', u'tell', u'inject', u'concatenate', u'gild the lily', u'string', u'enrich', u'modify', u'qualify', u'compound', u'insert', u'punctuate', u'work in', u'button', u'stick in', u'supplement', u'welt', u'toss in', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (44): set([u'add on', u'compound', u'add together', u'string up', u'fortify', u'enumerate', u'paint the lily', u'butylate', u'total', u'put on', u'milk', u'numerate', u'sum', u'add', u'tot', u'mark', u'increase', u'mix', u'add up', u'combine', u'adjoin', u'stud', u'mix in', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'enrich', u'tally', u'modify', u'number', u'qualify', u'tote up', u'sum up', u'count', u'punctuate', u'work in', u'button', u'supplement', u'welt', u'summate', u'tot up', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (0): set([])
ADD
golden (15): set([u'count', u'tote up', u'sum', u'tally', u'add together', u'tot', u'number', u'add up', u'add', u'summate', u'tot up', u'enumerate', u'sum up', u'total', u'numerate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (4): set([u'constitute', u'add', u'make', u'form'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (42): set([u'add on', u'contribute', u'bring', u'string up', u'fortify', u'throw in', u'paint the lily', u'butylate', u'put on', u'milk', u'instill', u'tinsel', u'transfuse', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'impart', u'include', u'alter', u'inject', u'concatenate', u'gild the lily', u'string', u'lend', u'enrich', u'factor', u'modify', u'mix in', u'bestow', u'compound', u'change', u'punctuate', u'work in', u'button', u'qualify', u'supplement', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (40): set([u'figure', u'add on', u'foot up', u'add together', u'string up', u'fortify', u'paint the lily', u'butylate', u'work out', u'put on', u'milk', u'calculate', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'mix in', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'reckon', u'enrich', u'modify', u'qualify', u'cipher', u'compound', u'foot', u'punctuate', u'cypher', u'compute', u'button', u'supplement', u'welt', u'work in', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (1): set([u'modify'])
ADD
golden (40): set([u'figure', u'add on', u'foot up', u'add together', u'string up', u'fortify', u'paint the lily', u'butylate', u'work out', u'put on', u'milk', u'calculate', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'mix in', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'reckon', u'enrich', u'modify', u'qualify', u'cipher', u'compound', u'foot', u'punctuate', u'cypher', u'compute', u'button', u'supplement', u'welt', u'work in', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (6): set([u'compute', u'calculate', u'enrich', u'modify', u'mix', u'combine'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (40): set([u'supply', u'add on', u'say', u'string up', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'append', u'sneak in', u'slip in', u'add', u'mark', u'increase', u'mix', u'state', u'combine', u'adjoin', u'stud', u'mix in', u'include', u'tell', u'inject', u'concatenate', u'gild the lily', u'string', u'enrich', u'modify', u'qualify', u'compound', u'insert', u'punctuate', u'work in', u'button', u'stick in', u'supplement', u'welt', u'toss in', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (3): set([u'contribute', u'alter', u'lend'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (42): set([u'add on', u'contribute', u'bring', u'string up', u'fortify', u'throw in', u'paint the lily', u'butylate', u'put on', u'milk', u'instill', u'tinsel', u'transfuse', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'impart', u'include', u'alter', u'inject', u'concatenate', u'gild the lily', u'string', u'lend', u'enrich', u'factor', u'modify', u'mix in', u'bestow', u'compound', u'change', u'punctuate', u'work in', u'button', u'qualify', u'supplement', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (4): set([u'modify', u'mix', u'combine', u'enrich'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'load', u'clients', u'natively', u'portable', u'render', u'enabled', u'peripheral', u'graphics', u'desktops', u'plugins', u'desktop', u'configure', u'toolbars', u'console', u'support', u'firmware', u'custom', u'access', u'functionality', u'widgets', u'import', u'developers', u'files', u'users', u'emulate', u'modify', u'update', u'applications', u'emulation', u'disable', u'ardour', u'newer', u'scripts', u'using', u'configuration', u'installation', u'install', u'embedded', u'programs', u'windows', u'plugin', u'allows', u'host', u'edit', u'extensions', u'allow', u'debug', u'implement', u'updates', u'software'])
intersection (1): set([u'modify'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (45): set([u'add on', u'contribute', u'constitute', u'bring', u'string up', u'fortify', u'throw in', u'paint the lily', u'butylate', u'put on', u'milk', u'instill', u'tinsel', u'transfuse', u'make', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'impart', u'include', u'alter', u'inject', u'concatenate', u'gild the lily', u'string', u'form', u'lend', u'enrich', u'factor', u'modify', u'mix in', u'bestow', u'compound', u'change', u'punctuate', u'work in', u'button', u'qualify', u'supplement', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (3): set([u'contribute', u'alter', u'lend'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (14): set([u'tinsel', u'lend', u'contribute', u'modify', u'add', u'change', u'bring', u'bestow', u'throw in', u'impart', u'factor', u'transfuse', u'alter', u'instill'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (3): set([u'contribute', u'alter', u'lend'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'compare', u'fix', u'give', u'likewise', u'proportions', u'thus', u'obtain', u'equal', u'relative', u'carry', u'apply', u'create', u'find', u'make', u'adding', u'compose', u'adds', u'calculate', u'similarly', u'invert', u'imparting', u'mix', u'squeeze', u'combine', u'eliminate', u'preferable', u'take', u'preserve', u'then', u'added', u'tenderize', u'get', u'enrich', u'modify', u'corresponds', u'replace', u'desired', u'hold', u'specify', u'applied', u'compute', u'avoid', u'minimize', u'double', u'yielding', u'correspond', u'assign', u'whole', u'suffice', u'decompose'])
intersection (0): set([])
ADD
golden (42): set([u'add on', u'contribute', u'bring', u'string up', u'fortify', u'throw in', u'paint the lily', u'butylate', u'put on', u'milk', u'instill', u'tinsel', u'transfuse', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'impart', u'include', u'alter', u'inject', u'concatenate', u'gild the lily', u'string', u'lend', u'enrich', u'factor', u'modify', u'mix in', u'bestow', u'compound', u'change', u'punctuate', u'work in', u'button', u'qualify', u'supplement', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (1): set([u'bring'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
ADD
golden (11): set([u'insert', u'sneak in', u'supply', u'slip in', u'stick in', u'tell', u'add', u'state', u'say', u'toss in', u'append'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (1): set([u'insert'])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (48): set([u'consolidate', u'incorporate', u'agreed', u'expects', u'replace', u'renovate', u'bring', u'added', u'reconstruct', u'sell', u'adding', u'upgrade', u'additional', u'start', u'provide', u'create', u'refurbish', u'construct', u'occupy', u'intends', u'build', u'expected', u'new', u'complement', u'compliment', u'allocate', u'begin', u'buy', u'handle', u'plans', u'enable', u'redevelop', u'update', u'introduce', u'expansion', u'relocate', u'utilize', u'generate', u'expand', u'accommodate', u'convert', u'proposes', u'acquire', u'addition', u'maintain', u'install', u'invest', u'rebuild'])
intersection (0): set([])
ADD
golden (30): set([u'add on', u'supplement', u'fortify', u'paint the lily', u'butylate', u'put on', u'milk', u'mark', u'increase', u'mix', u'add', u'combine', u'adjoin', u'stud', u'enrich', u'include', u'inject', u'concatenate', u'gild the lily', u'string', u'mix in', u'modify', u'qualify', u'compound', u'punctuate', u'work in', u'button', u'string up', u'welt', u'intercalate'])
predicted (50): set([u'respond', u'represent', u'compare', u'inspire', u'give', u'imitate', u'relate', u'contribute', u'prefer', u'emphasise', u'explain', u'convey', u'dictate', u'attest', u'adding', u'memorize', u'attach', u'create', u'utilize', u'tend', u'allude', u'encourage', u'adapt', u'recommend', u'alter', u'emphasize', u'draw', u'recreate', u'incorporate', u'lend', u'emulate', u'ascribe', u'deliver', u'introduce', u'reflect', u'produce', u'induce', u'pertaining', u'appealed', u'interpret', u'conform', u'insert', u'exaggerate', u'pertain', u'borrow', u'ignore', u'adjust', u'demonstrate', u'assign', u'added'])
intersection (0): set([])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (40): set([u'sally out', u'emerge', u'pop up', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'turn up', u'crop up', u'crop out', u'appear', u'perform', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'do', u'come to hand', u'pop out', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'leap out', u'peep', u'burst out', u'burst forth', u'show up', u'execute', u'push through', u'reappear', u'come on', u'manifest', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (40): set([u'sally out', u'emerge', u'execute', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'perform', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'do', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (50): set([u'rebooted', u'marvel', u'appeared', u'highlander', u'vs', u'prequels', u'dreamwave', u'mentioned', u'crisis', u'witchblade', u'miniseries', u'flash', u'hellboy', u'appears', u'returns', u'does', u'mangaverse', u'cameos', u'gamera', u'canonical', u'continuity', u'storyarc', u'transformers', u'godzilla', u'batman', u'ultraman', u'bravestarr', u'elseworlds', u'mention', u'ghostbusters', u'reappears', u'cartoon', u'reappeared', u'sureshock', u'battlewave', u'superheroines', u'ducktales', u'reappear', u'resurface', u'interestingly', u'appearance', u'did', u'aquaman', u'storyline', u'anime', u'toyline', u'playable', u'mebius', u'original', u'dcau'])
intersection (0): set([])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'happen'])
APPEAR
golden (5): set([u'appear', u'gleam', u'fulminate', u'come along', u'occur'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'occur'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (41): set([u'sally out', u'emerge', u'pop up', u'show', u'spring to mind', u'come on', u're-emerge', u'come along', u'surface', u'wash up', u'turn up', u'occur', u'crop out', u'appear', u'gleam', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'crop up', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'leap out', u'peep', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'fulminate', u'manifest', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (3): set([u'be', u'seem', u'appear'])
predicted (50): set([u'rebooted', u'marvel', u'appeared', u'highlander', u'vs', u'prequels', u'dreamwave', u'mentioned', u'crisis', u'witchblade', u'miniseries', u'flash', u'hellboy', u'appears', u'returns', u'does', u'mangaverse', u'cameos', u'gamera', u'canonical', u'continuity', u'storyarc', u'transformers', u'godzilla', u'batman', u'ultraman', u'bravestarr', u'elseworlds', u'mention', u'ghostbusters', u'reappears', u'cartoon', u'reappeared', u'sureshock', u'battlewave', u'superheroines', u'ducktales', u'reappear', u'resurface', u'interestingly', u'appearance', u'did', u'aquaman', u'storyline', u'anime', u'toyline', u'playable', u'mebius', u'original', u'dcau'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (41): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u'fulminate', u're-emerge', u'come along', u'surface', u'wash up', u'manifest', u'occur', u'crop out', u'appear', u'gleam', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'peep', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (50): set([u'rebooted', u'marvel', u'appeared', u'highlander', u'vs', u'prequels', u'dreamwave', u'mentioned', u'crisis', u'witchblade', u'miniseries', u'flash', u'hellboy', u'appears', u'returns', u'does', u'mangaverse', u'cameos', u'gamera', u'canonical', u'continuity', u'storyarc', u'transformers', u'godzilla', u'batman', u'ultraman', u'bravestarr', u'elseworlds', u'mention', u'ghostbusters', u'reappears', u'cartoon', u'reappeared', u'sureshock', u'battlewave', u'superheroines', u'ducktales', u'reappear', u'resurface', u'interestingly', u'appearance', u'did', u'aquaman', u'storyline', u'anime', u'toyline', u'playable', u'mebius', u'original', u'dcau'])
intersection (2): set([u'reappear', u'flash'])
APPEAR
golden (40): set([u'sally out', u'emerge', u'pop up', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'happen', u'turn up', u'crop up', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'leap out', u'materialise', u'peep', u'burst out', u'burst forth', u'show up', u'materialize', u'pop out', u'push through', u'reappear', u'come on', u'manifest', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'happen'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (1): set([u'make'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (0): set([])
APPEAR
golden (4): set([u'perform', u'do', u'execute', u'appear'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (1): set([u'perform'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (1): set([u'appear'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (0): set([])
APPEAR
golden (44): set([u'sally out', u'emerge', u'pop up', u'show', u'spring to mind', u'come on', u're-emerge', u'come along', u'surface', u'wash up', u'happen', u'turn up', u'occur', u'crop out', u'appear', u'gleam', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'crop up', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'leap out', u'materialise', u'peep', u'burst out', u'burst forth', u'show up', u'materialize', u'pop out', u'push through', u'reappear', u'fulminate', u'manifest', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (4): set([u'perform', u'do', u'execute', u'appear'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (1): set([u'perform'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'appear', u'gleam', u'fulminate', u'come along', u'occur'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (4): set([u'perform', u'do', u'execute', u'appear'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (1): set([u'perform'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (0): set([])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'happen'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (40): set([u'sally out', u'emerge', u'execute', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'perform', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'do', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (1): set([u'perform'])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (1): set([u'make'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'happen'])
APPEAR
golden (40): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'happen', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'materialise', u'crop up', u'burst out', u'burst forth', u'show up', u'materialize', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (3): set([u'be', u'seem', u'appear'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (50): set([u'rebooted', u'marvel', u'appeared', u'highlander', u'vs', u'prequels', u'dreamwave', u'mentioned', u'crisis', u'witchblade', u'miniseries', u'flash', u'hellboy', u'appears', u'returns', u'does', u'mangaverse', u'cameos', u'gamera', u'canonical', u'continuity', u'storyarc', u'transformers', u'godzilla', u'batman', u'ultraman', u'bravestarr', u'elseworlds', u'mention', u'ghostbusters', u'reappears', u'cartoon', u'reappeared', u'sureshock', u'battlewave', u'superheroines', u'ducktales', u'reappear', u'resurface', u'interestingly', u'appearance', u'did', u'aquaman', u'storyline', u'anime', u'toyline', u'playable', u'mebius', u'original', u'dcau'])
intersection (2): set([u'reappear', u'flash'])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (0): set([])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (40): set([u'sally out', u'emerge', u'pop up', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'happen', u'turn up', u'crop up', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'leap out', u'materialise', u'peep', u'burst out', u'burst forth', u'show up', u'materialize', u'pop out', u'push through', u'reappear', u'come on', u'manifest', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (37): set([u'sally out', u'emerge', u'leap out', u'show', u'spring to mind', u're-emerge', u'surface', u'wash up', u'manifest', u'peep', u'crop out', u'appear', u'flash', u'come out', u'roll in', u'come to mind', u'basset', u'come to hand', u'rush out', u'outcrop', u'break through', u'come to light', u'break', u'pop', u'pop up', u'crop up', u'burst out', u'burst forth', u'show up', u'pop out', u'push through', u'reappear', u'come on', u'turn up', u'erupt', u'turn out', u'come through'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (1): set([u'appear'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (0): set([])
APPEAR
golden (1): set([u'appear'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (3): set([u'be', u'seem', u'appear'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (3): set([u'be', u'seem', u'appear'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (1): set([u'appear'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'respond', u'invalidate', u'foresee', u'purport', u'constitute', u'imply', u'deem', u'cease', u'want', u'fail', u'apply', u'seem', u'any', u'if', u'hesitate', u'necessarily', u'confirm', u'suffice', u'indicate', u'does', u'entitle', u'endorse', u'confine', u'ought', u'disclose', u'intend', u'happen', u'require', u'otherwise', u'qualify', u'commit', u'not', u'affect', u'validate', u'careful', u'specify', u'reveal', u'refuse', u'condone', u'anything', u'bother', u'tolerate', u'involve', u'permit', u'offend', u'exist', u'disqualify', u'preclude', u'mean'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (50): set([u'rebooted', u'marvel', u'appeared', u'highlander', u'vs', u'prequels', u'dreamwave', u'mentioned', u'crisis', u'witchblade', u'miniseries', u'flash', u'hellboy', u'appears', u'returns', u'does', u'mangaverse', u'cameos', u'gamera', u'canonical', u'continuity', u'storyarc', u'transformers', u'godzilla', u'batman', u'ultraman', u'bravestarr', u'elseworlds', u'mention', u'ghostbusters', u'reappears', u'cartoon', u'reappeared', u'sureshock', u'battlewave', u'superheroines', u'ducktales', u'reappear', u'resurface', u'interestingly', u'appearance', u'did', u'aquaman', u'storyline', u'anime', u'toyline', u'playable', u'mebius', u'original', u'dcau'])
intersection (0): set([])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'exhibit', u'colorations', u'cones', u'migrate', u'behave', u'visible', u'have', u'carry', u'seem', u'occur', u'disappear', u'spherulites', u'develop', u'form', u'chromatophores', u'macules', u'enlarge', u'tend', u'occasionally', u'byssal', u'differently', u'fade', u'unpigmented', u'metameric', u'themselves', u'blotchy', u'annuli', u'begin', u'filamentary', u'extend', u'barbules', u'expose', u'persist', u'possibly', u'grow', u'exfoliate', u'come', u'appears', u'present', u'both', u'resemble', u'crowded', u'discrete', u'remain', u'become', u'invisible', u'or', u'ascocarps', u'otherwise'])
intersection (1): set([u'seem'])
APPEAR
golden (27): set([u'feel', u'jump', u'stand out', u'come across', u'radiate', u'seem', u'glitter', u'pass off', u'cut', u'glisten', u'glint', u'make', u'glow', u'be', u'stick out', u'rise', u'beam', u'lift', u'leap out', u'rear', u'appear', u'sound', u'loom', u'look', u'jump out', u'gleam', u'shine'])
predicted (49): set([u'persevere', u'hypaspace', u'contribute', u'occasionally', u'bring', u'decided', u'select', u'portray', u'promote', u'showcase', u'perform', u'make', u'playdays', u'contributed', u'feature', u'farmclub', u'totp', u'swv', u'regularly', u'begin', u'collaborate', u'star', u'returned', u'2002apresent', u'snl', u'continues', u'refused', u'guestings', u'produce', u'headline', u'date', u'choreograph', u'4music', u'continued', u'appears', u'arrange', u'play', u'on', u'appearing', u'npras', u'bbc4', u'addition', u's', u'concentrate', u'enter', u'went', u'playmania', u'bbc7', u'bbc6'])
intersection (1): set([u'make'])
APPEAR
golden (5): set([u'materialize', u'happen', u'come out', u'appear', u'materialise'])
predicted (49): set([u'references', u'relate', u'describe', u'chronograms', u'etruscan', u'texts', u'nonfictional', u'eras', u'sibyls', u'seem', u'scholiasts', u'forms', u'predate', u'differ', u'ancient', u'analogues', u'legends', u'mythological', u'allusions', u'myths', u'depicted', u'various', u'survivals', u'fables', u'folktales', u'grimoires', u'translations', u'lists', u'pseudohistory', u'cirth', u'psalters', u'folklore', u'authors', u'otogizmshi', u'appears', u'inscriptions', u'rulers', u'versions', u'ideograms', u'genealogies', u'mythologies', u'depictions', u'chronicles', u'contain', u'codices', u'exist', u'elegiacs', u'sources', u'vary'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (16): set([u'phrase', u'word', u'formulate', u'request', u'question', u'interrogate', u'articulate', u'bespeak', u'quest', u'turn to', u'solicit', u'address', u'ask', u'query', u'call for', u'give voice'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (7): set([u'request', u'ask', u'quest', u'solicit', u'demand', u'bespeak', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (5): set([u'ask', u'require', u'call', u'expect', u'demand'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (1): set([u'expect'])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (10): set([u'require', u'request', u'bespeak', u'quest', u'call', u'expect', u'solicit', u'demand', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (1): set([u'expect'])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'suspend', u'begged', u'requested', u'persuade', u'accept', u'sign', u'decided', u'notify', u'apply', u'requesting', u'intended', u'try', u'confirm', u'give', u'send', u'instructed', u'asking', u'call', u'choose', u'reinstate', u'consented', u'urge', u'wished', u'invite', u'permission', u'offered', u'deliver', u'procure', u'resign', u'refused', u'demand', u'appealed', u'wanted', u'arrange', u'appoint', u'deny', u'refuse', u'nominate', u'grant', u'refusing', u'remove', u'summon', u'leave', u'inform', u'convince', u'wish', u'meet', u'asked', u'urging'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'deadspin', u'fearnet', u'ad', u'indiewire', u'collegehumor', u'vlog', u'mahalo', u'jalopnik', u'citysearch', u'contactmusic', u'novinite', u'smartmoney', u'afterellen', u'gmail', u'soundboard', u'moviemaker', u'tyden', u'instyle', u'funnyordie', u'insider', u'buzznet', u'jambands', u'hiphopdx', u'rocketboom', u'thestreet', u'gamefly', u'foxsports', u'razorcake', u'planetout', u'dreamwatch', u'fyi', u'defamer', u'brandweek', u'ivillage', u'techcrunch', u'biz', u'channel4', u'gocomics', u'tompaine', u'broadwayworld', u'cnet', u'zappos', u'macuser', u'diggnation', u'autoblog', u'scoop', u'moviefone', u'gaydar', u'afterelton', u'frontpage'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'suspend', u'begged', u'requested', u'persuade', u'accept', u'sign', u'decided', u'notify', u'apply', u'requesting', u'intended', u'try', u'confirm', u'give', u'send', u'instructed', u'asking', u'call', u'choose', u'reinstate', u'consented', u'urge', u'wished', u'invite', u'permission', u'offered', u'deliver', u'procure', u'resign', u'refused', u'demand', u'appealed', u'wanted', u'arrange', u'appoint', u'deny', u'refuse', u'nominate', u'grant', u'refusing', u'remove', u'summon', u'leave', u'inform', u'convince', u'wish', u'meet', u'asked', u'urging'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'suspend', u'begged', u'requested', u'persuade', u'accept', u'sign', u'decided', u'notify', u'apply', u'requesting', u'intended', u'try', u'confirm', u'give', u'send', u'instructed', u'asking', u'call', u'choose', u'reinstate', u'consented', u'urge', u'wished', u'invite', u'permission', u'offered', u'deliver', u'procure', u'resign', u'refused', u'demand', u'appealed', u'wanted', u'arrange', u'appoint', u'deny', u'refuse', u'nominate', u'grant', u'refusing', u'remove', u'summon', u'leave', u'inform', u'convince', u'wish', u'meet', u'asked', u'urging'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'suspend', u'begged', u'requested', u'persuade', u'accept', u'sign', u'decided', u'notify', u'apply', u'requesting', u'intended', u'try', u'confirm', u'give', u'send', u'instructed', u'asking', u'call', u'choose', u'reinstate', u'consented', u'urge', u'wished', u'invite', u'permission', u'offered', u'deliver', u'procure', u'resign', u'refused', u'demand', u'appealed', u'wanted', u'arrange', u'appoint', u'deny', u'refuse', u'nominate', u'grant', u'refusing', u'remove', u'summon', u'leave', u'inform', u'convince', u'wish', u'meet', u'asked', u'urging'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'deadspin', u'fearnet', u'ad', u'indiewire', u'collegehumor', u'vlog', u'mahalo', u'jalopnik', u'citysearch', u'contactmusic', u'novinite', u'smartmoney', u'afterellen', u'gmail', u'soundboard', u'moviemaker', u'tyden', u'instyle', u'funnyordie', u'insider', u'buzznet', u'jambands', u'hiphopdx', u'rocketboom', u'thestreet', u'gamefly', u'foxsports', u'razorcake', u'planetout', u'dreamwatch', u'fyi', u'defamer', u'brandweek', u'ivillage', u'techcrunch', u'biz', u'channel4', u'gocomics', u'tompaine', u'broadwayworld', u'cnet', u'zappos', u'macuser', u'diggnation', u'autoblog', u'scoop', u'moviefone', u'gaydar', u'afterelton', u'frontpage'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'deadspin', u'fearnet', u'ad', u'indiewire', u'collegehumor', u'vlog', u'mahalo', u'jalopnik', u'citysearch', u'contactmusic', u'novinite', u'smartmoney', u'afterellen', u'gmail', u'soundboard', u'moviemaker', u'tyden', u'instyle', u'funnyordie', u'insider', u'buzznet', u'jambands', u'hiphopdx', u'rocketboom', u'thestreet', u'gamefly', u'foxsports', u'razorcake', u'planetout', u'dreamwatch', u'fyi', u'defamer', u'brandweek', u'ivillage', u'techcrunch', u'biz', u'channel4', u'gocomics', u'tompaine', u'broadwayworld', u'cnet', u'zappos', u'macuser', u'diggnation', u'autoblog', u'scoop', u'moviefone', u'gaydar', u'afterelton', u'frontpage'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (11): set([u'word', u'formulate', u'request', u'articulate', u'ask', u'quest', u'solicit', u'bespeak', u'phrase', u'call for', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'suspend', u'begged', u'requested', u'persuade', u'accept', u'sign', u'decided', u'notify', u'apply', u'requesting', u'intended', u'try', u'confirm', u'give', u'send', u'instructed', u'asking', u'call', u'choose', u'reinstate', u'consented', u'urge', u'wished', u'invite', u'permission', u'offered', u'deliver', u'procure', u'resign', u'refused', u'demand', u'appealed', u'wanted', u'arrange', u'appoint', u'deny', u'refuse', u'nominate', u'grant', u'refusing', u'remove', u'summon', u'leave', u'inform', u'convince', u'wish', u'meet', u'asked', u'urging'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'suspend', u'begged', u'requested', u'persuade', u'accept', u'sign', u'decided', u'notify', u'apply', u'requesting', u'intended', u'try', u'confirm', u'give', u'send', u'instructed', u'asking', u'call', u'choose', u'reinstate', u'consented', u'urge', u'wished', u'invite', u'permission', u'offered', u'deliver', u'procure', u'resign', u'refused', u'demand', u'appealed', u'wanted', u'arrange', u'appoint', u'deny', u'refuse', u'nominate', u'grant', u'refusing', u'remove', u'summon', u'leave', u'inform', u'convince', u'wish', u'meet', u'asked', u'urging'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'suspend', u'begged', u'requested', u'persuade', u'accept', u'sign', u'decided', u'notify', u'apply', u'requesting', u'intended', u'try', u'confirm', u'give', u'send', u'instructed', u'asking', u'call', u'choose', u'reinstate', u'consented', u'urge', u'wished', u'invite', u'permission', u'offered', u'deliver', u'procure', u'resign', u'refused', u'demand', u'appealed', u'wanted', u'arrange', u'appoint', u'deny', u'refuse', u'nominate', u'grant', u'refusing', u'remove', u'summon', u'leave', u'inform', u'convince', u'wish', u'meet', u'asked', u'urging'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (11): set([u'question', u'request', u'interrogate', u'bespeak', u'quest', u'solicit', u'address', u'ask', u'query', u'call for', u'turn to'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (11): set([u'phrase', u'word', u'formulate', u'question', u'interrogate', u'articulate', u'turn to', u'address', u'ask', u'query', u'give voice'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (49): set([u'awhy', u'forget', u'fucking', u'fuck', u'say', u'buy', u'expect', u'need', u'happen', u'anything', u'find', u'worry', u'really', u'try', u'what', u'anymore', u're', u'how', u'going', u'damn', u'you', u'wait', u'tell', u'do', u'we', u'sure', u'somebody', u'get', u'donat', u'gonna', u'understand', u'know', u'imagine', u'telling', u'believe', u'why', u'care', u'me', u'myself', u'look', u'awhat', u'i', u'wish', u'anybody', u'n', u'leave', u'maybe', u'think', u'mean'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'question', u'interrogate', u'turn to', u'address', u'ask', u'query'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'word', u'formulate', u'articulate', u'ask', u'phrase', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (10): set([u'require', u'request', u'bespeak', u'quest', u'call', u'expect', u'solicit', u'demand', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
ASK
golden (11): set([u'word', u'formulate', u'request', u'articulate', u'ask', u'quest', u'solicit', u'bespeak', u'phrase', u'call for', u'give voice'])
predicted (48): set([u'defer', u'answering', u'elect', u'consider', u'recognize', u'beforehand', u'discover', u'instruct', u'declare', u'expect', u'want', u'fail', u'decides', u'assign', u'responses', u'ignore', u'guess', u'proceed', u'asks', u'answered', u'remember', u'memorize', u'submit', u'webmaster', u'how', u'asking', u'choose', u'answer', u'you', u'tell', u'opt', u'repeat', u'invite', u'get', u'answers', u'wishes', u'know', u'decide', u'discuss', u'arrange', u'look', u'wish', u'think', u'try', u'learn', u'asked', u'talk', u'notify'])
intersection (0): set([])
ASK
golden (6): set([u'request', u'bespeak', u'quest', u'solicit', u'ask', u'call for'])
predicted (50): set([u'wants', u'promises', u'comfort', u'decides', u'help', u'warns', u'persuade', u'kill', u'apologize', u'go', u'begged', u'agrees', u'tried', u'magawisca', u'apologizes', u'asks', u'demands', u'find', u'asking', u'instructs', u'tell', u'advises', u'return', u'invite', u'get', u'propose', u'convinces', u'begging', u'forgive', u'stay', u'warn', u'offers', u'tries', u'let', u'decide', u'meet', u'refuses', u'implores', u'come', u'him', u'wait', u'desperately', u'marry', u'persuades', u'begs', u'leave', u'convince', u'urges', u'requests', u'talk'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'manage', u'replace', u'assigned', u'bring', u'as', u'decided', u'apply', u'gm', u'establish', u'fill', u'move', u'capture', u'opted', u'lead', u'cookson', u'add', u'reappoint', u'assistant', u'lamoriello', u'adviser', u'woman', u'appointment', u'get', u'attempted', u'becoming', u'serve', u'youngest', u'job', u'succeed', u'advisor', u'post', u'wanted', u'convinced', u'aide', u'appoint', u'hire', u'relieve', u'join', u'full', u'gansler', u'assume', u'later', u'leave', u'remain', u'became', u'burnett', u'promoted', u'position', u'senior', u'persuaded'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (49): set([u'incorporate', u'begun', u'pursue', u'recognize', u'belonged', u'idea', u'hitherto', u'ceased', u'itself', u'exist', u'want', u'functioned', u'encompass', u'establish', u'yet', u'feared', u'constituted', u'reconstituted', u'prove', u'create', u'seem', u'envisaged', u'henceforth', u'reunite', u'believing', u'emerged', u'independent', u'begin', u'creating', u'form', u'annex', u'absorb', u'annexed', u'recast', u'hoped', u'desired', u'hinulawan', u'nucleus', u'recognise', u'realized', u'retroceded', u'envisioned', u'fully', u'merge', u'remain', u'became', u'enter', u'autonomous', u'agree'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (49): set([u'incorporate', u'begun', u'pursue', u'recognize', u'belonged', u'idea', u'hitherto', u'ceased', u'itself', u'exist', u'want', u'functioned', u'encompass', u'establish', u'yet', u'feared', u'constituted', u'reconstituted', u'prove', u'create', u'seem', u'envisaged', u'henceforth', u'reunite', u'believing', u'emerged', u'independent', u'begin', u'creating', u'form', u'annex', u'absorb', u'annexed', u'recast', u'hoped', u'desired', u'hinulawan', u'nucleus', u'recognise', u'realized', u'retroceded', u'envisioned', u'fully', u'merge', u'remain', u'became', u'enter', u'autonomous', u'agree'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (49): set([u'incorporate', u'begun', u'pursue', u'recognize', u'belonged', u'idea', u'hitherto', u'ceased', u'itself', u'exist', u'want', u'functioned', u'encompass', u'establish', u'yet', u'feared', u'constituted', u'reconstituted', u'prove', u'create', u'seem', u'envisaged', u'henceforth', u'reunite', u'believing', u'emerged', u'independent', u'begin', u'creating', u'form', u'annex', u'absorb', u'annexed', u'recast', u'hoped', u'desired', u'hinulawan', u'nucleus', u'recognise', u'realized', u'retroceded', u'envisioned', u'fully', u'merge', u'remain', u'became', u'enter', u'autonomous', u'agree'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (25): set([u'transmute', u'reduce', u'go', u'nucleate', u'sober', u'take effect', u'transform', u'add up', u'suffocate', u'take', u'run', u'get', u'sober up', u'metamorphose', u'boil down', u'break', u'come', u'change state', u'work', u'choke', u'turn', u'amount', u'settle', u'come down', u'become'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (25): set([u'transmute', u'reduce', u'go', u'nucleate', u'sober', u'take effect', u'transform', u'add up', u'suffocate', u'take', u'run', u'get', u'sober up', u'metamorphose', u'boil down', u'break', u'come', u'change state', u'work', u'choke', u'turn', u'amount', u'settle', u'come down', u'become'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'manage', u'replace', u'assigned', u'bring', u'as', u'decided', u'apply', u'gm', u'establish', u'fill', u'move', u'capture', u'opted', u'lead', u'cookson', u'add', u'reappoint', u'assistant', u'lamoriello', u'adviser', u'woman', u'appointment', u'get', u'attempted', u'becoming', u'serve', u'youngest', u'job', u'succeed', u'advisor', u'post', u'wanted', u'convinced', u'aide', u'appoint', u'hire', u'relieve', u'join', u'full', u'gansler', u'assume', u'later', u'leave', u'remain', u'became', u'burnett', u'promoted', u'position', u'senior', u'persuaded'])
intersection (0): set([])
BECOME
golden (25): set([u'transmute', u'reduce', u'go', u'nucleate', u'sober', u'take effect', u'transform', u'add up', u'suffocate', u'take', u'run', u'get', u'sober up', u'metamorphose', u'boil down', u'break', u'come', u'change state', u'work', u'choke', u'turn', u'amount', u'settle', u'come down', u'become'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (25): set([u'transmute', u'reduce', u'go', u'nucleate', u'sober', u'take effect', u'transform', u'add up', u'suffocate', u'take', u'run', u'get', u'sober up', u'metamorphose', u'boil down', u'break', u'come', u'change state', u'work', u'choke', u'turn', u'amount', u'settle', u'come down', u'become'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (49): set([u'incorporate', u'begun', u'pursue', u'recognize', u'belonged', u'idea', u'hitherto', u'ceased', u'itself', u'exist', u'want', u'functioned', u'encompass', u'establish', u'yet', u'feared', u'constituted', u'reconstituted', u'prove', u'create', u'seem', u'envisaged', u'henceforth', u'reunite', u'believing', u'emerged', u'independent', u'begin', u'creating', u'form', u'annex', u'absorb', u'annexed', u'recast', u'hoped', u'desired', u'hinulawan', u'nucleus', u'recognise', u'realized', u'retroceded', u'envisioned', u'fully', u'merge', u'remain', u'became', u'enter', u'autonomous', u'agree'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (49): set([u'incorporate', u'begun', u'pursue', u'recognize', u'belonged', u'idea', u'hitherto', u'ceased', u'itself', u'exist', u'want', u'functioned', u'encompass', u'establish', u'yet', u'feared', u'constituted', u'reconstituted', u'prove', u'create', u'seem', u'envisaged', u'henceforth', u'reunite', u'believing', u'emerged', u'independent', u'begin', u'creating', u'form', u'annex', u'absorb', u'annexed', u'recast', u'hoped', u'desired', u'hinulawan', u'nucleus', u'recognise', u'realized', u'retroceded', u'envisioned', u'fully', u'merge', u'remain', u'became', u'enter', u'autonomous', u'agree'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (49): set([u'incorporate', u'begun', u'pursue', u'recognize', u'belonged', u'idea', u'hitherto', u'ceased', u'itself', u'exist', u'want', u'functioned', u'encompass', u'establish', u'yet', u'feared', u'constituted', u'reconstituted', u'prove', u'create', u'seem', u'envisaged', u'henceforth', u'reunite', u'believing', u'emerged', u'independent', u'begin', u'creating', u'form', u'annex', u'absorb', u'annexed', u'recast', u'hoped', u'desired', u'hinulawan', u'nucleus', u'recognise', u'realized', u'retroceded', u'envisioned', u'fully', u'merge', u'remain', u'became', u'enter', u'autonomous', u'agree'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'manage', u'replace', u'assigned', u'bring', u'as', u'decided', u'apply', u'gm', u'establish', u'fill', u'move', u'capture', u'opted', u'lead', u'cookson', u'add', u'reappoint', u'assistant', u'lamoriello', u'adviser', u'woman', u'appointment', u'get', u'attempted', u'becoming', u'serve', u'youngest', u'job', u'succeed', u'advisor', u'post', u'wanted', u'convinced', u'aide', u'appoint', u'hire', u'relieve', u'join', u'full', u'gansler', u'assume', u'later', u'leave', u'remain', u'became', u'burnett', u'promoted', u'position', u'senior', u'persuaded'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (25): set([u'transmute', u'reduce', u'go', u'nucleate', u'sober', u'take effect', u'transform', u'add up', u'suffocate', u'take', u'run', u'get', u'sober up', u'metamorphose', u'boil down', u'break', u'come', u'change state', u'work', u'choke', u'turn', u'amount', u'settle', u'come down', u'become'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (47): set([u'changed', u'proved', u'phenomenon', u'presence', u'increasingly', u'aspect', u'enormously', u'proven', u'hotspot', u'begun', u'seen', u'immensely', u'reputation', u'grown', u'resurgence', u'revived', u'renewed', u'witnessed', u'remains', u'phenomenal', u'impact', u'been', u'lately', u'matured', u'emerged', u'thriving', u'icon', u'mecca', u'experienced', u'recently', u'evolved', u'boasted', u'exploded', u'component', u'undergone', u'cult', u'arisen', u'recent', u'gained', u'increasing', u'always', u'gotten', u'popularity', u'became', u'hugely', u'vibrant', u'something'])
intersection (0): set([])
BECOME
golden (13): set([u'work', u'run', u'get', u'sober up', u'take effect', u'break', u'sober', u'settle', u'take', u'change state', u'go', u'become', u'turn'])
predicted (50): set([u'respond', u'appropriately', u'presumably', u'particularly', u'less', u'some', u'not', u'have', u'carry', u'seem', u'tend', u'seek', u'metabolisms', u'disappear', u'even', u'develop', u'appear', u'advantageous', u'conversely', u'avoid', u'while', u'quickly', u'slowly', u'therefore', u'persist', u'resilient', u'survive', u'themselves', u'aggressive', u'more', u'evolve', u'experienced', u'most', u'too', u'they', u'multiply', u'rapidly', u'grow', u'encounter', u'exhibit', u'especially', u'dangerous', u'require', u'tolerate', u'fewer', u'reproduce', u'remain', u'lose', u'consequently', u'otherwise'])
intersection (0): set([])
BECOME
golden (14): set([u'transmute', u'amount', u'reduce', u'choke', u'metamorphose', u'transform', u'turn', u'add up', u'suffocate', u'nucleate', u'become', u'boil down', u'come', u'come down'])
predicted (50): set([u'despise', u'befriend', u'do', u'zalmie', u'accept', u'hikitsu', u'umeda', u'pecksniff', u'promised', u'uruki', u'hate', u'yet', u'even', u'loyal', u'nuriko', u'renounce', u'rozalin', u'make', u'young', u'attraction', u'endanger', u'vowed', u'choose', u'reject', u'meiko', u'ally', u'betray', u'be', u'bond', u'liett', u'initially', u'willingly', u'becoming', u'impress', u'resent', u'desired', u'chevaliers', u'yohsuke', u'grow', u'farfrae', u'naturally', u'pursue', u'pretend', u'gyrull', u'remain', u'consummate', u'mentor', u'abandon', u'once', u'genuinely'])
intersection (0): set([])
BOARD
golden (42): set([u'display panel', u'scoreboard', u'notice board', u'snowboard', u'workboard', u'mortarboard', u'flat solid', u'palette', u'sheet', u'aquaplane', u'planchette', u'trencher', u'pallet', u'bread board', u'kneeler', u'springboard', u'board', u'wallboard', u'video display', u'big board', u'wakeboard', u'wake board', u'sideboard', u'floorboard', u'drafting board', u'chopping board', u'drawing board', u'breadboard', u'work-board', u'hawk', u'floor board', u'surfboard', u'drainboard', u'skateboard', u'dry wall', u'bulletin board', u'draining board', u'display board', u'cutting board', u'drywall', u'display', u'ironing board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (37): set([u'scoreboard', u'breadboard', u'snowboard', u'workboard', u'mortarboard', u'flat solid', u'palette', u'sheet', u'aquaplane', u'planchette', u'trencher', u'pallet', u'bread board', u'wakeboard', u'springboard', u'board', u'kneeler', u'wake board', u'sideboard', u'floorboard', u'drafting board', u'chopping board', u'drawing board', u'notice board', u'work-board', u'hawk', u'floor board', u'surfboard', u'drywall', u'skateboard', u'dry wall', u'bulletin board', u'draining board', u'cutting board', u'drainboard', u'wallboard', u'ironing board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (37): set([u'scoreboard', u'breadboard', u'snowboard', u'workboard', u'mortarboard', u'flat solid', u'palette', u'sheet', u'aquaplane', u'planchette', u'trencher', u'pallet', u'bread board', u'wakeboard', u'springboard', u'board', u'kneeler', u'wake board', u'sideboard', u'floorboard', u'drafting board', u'chopping board', u'drawing board', u'notice board', u'work-board', u'hawk', u'floor board', u'surfboard', u'drywall', u'skateboard', u'dry wall', u'bulletin board', u'draining board', u'cutting board', u'drainboard', u'wallboard', u'ironing board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (53): set([u'instrument panel', u'scoreboard', u'breadboard', u'snowboard', u'plug-in', u'workboard', u'mortarboard', u'flat solid', u'circuit board', u'mother board', u'palette', u'pc board', u'sheet', u'aquaplane', u'planchette', u'trencher', u'pallet', u'control board', u'bread board', u'wakeboard', u'springboard', u'fascia', u'board', u'printed circuit', u'circuit card', u'kneeler', u'wake board', u'sideboard', u'floorboard', u'drafting board', u'chopping board', u'drawing board', u'notice board', u'work-board', u'cpu board', u'floor board', u'card', u'panel', u'surfboard', u'add-in', u'drywall', u'skateboard', u'dry wall', u'bulletin board', u'draining board', u'electrical device', u'dashboard', u'control panel', u'cutting board', u'drainboard', u'wallboard', u'hawk', u'ironing board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (1): set([u'panel'])
BOARD
golden (15): set([u'pegboard', u'cribbage board', u'checker board', u'dartboard', u'board', u'surface', u'gameboard', u'punchboard', u'checkerboard', u'backgammon board', u'ouija board', u'go board', u'monopoly board', u'dart board', u'ouija'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (1): set([u'gameboard'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'oardec', u'appeals', u'alj', u'petitioners', u'hearing', u'complaints', u'defense', u'sccrc', u'page2', u'page1', u'court', u'rulemaking', u'memos', u'review', u'adjudication', u'courtas', u'csrts', u'schindlers', u'administrative', u'evidence', u'reauthorize', u'status', u'csrt', u'detainees', u'hiibel', u'testimony', u'subpoenas', u'petitions', u'combatant', u'reviewed', u'transcript', u'panel', u'tribunal', u'counsel', u'hearings', u'boards', u'boardas', u'disbarment', u'annual', u'petitioner', u'summary', u'depositions', u'yagman', u'grumet', u'pending', u'recommendations', u'parole', u'convened', u'dismissal'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (11): set([u'wale', u'deal', u'skid', u'strake', u'lumber', u'board', u'chipboard', u'hardboard', u'timber', u'plank', u'matchboard'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (11): set([u'wale', u'deal', u'skid', u'strake', u'lumber', u'board', u'chipboard', u'hardboard', u'timber', u'plank', u'matchboard'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (37): set([u'scoreboard', u'breadboard', u'snowboard', u'workboard', u'mortarboard', u'flat solid', u'palette', u'sheet', u'aquaplane', u'planchette', u'trencher', u'pallet', u'bread board', u'wakeboard', u'springboard', u'board', u'kneeler', u'wake board', u'sideboard', u'floorboard', u'drafting board', u'chopping board', u'drawing board', u'notice board', u'work-board', u'hawk', u'floor board', u'surfboard', u'drywall', u'skateboard', u'dry wall', u'bulletin board', u'draining board', u'cutting board', u'drainboard', u'wallboard', u'ironing board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (6): set([u'display panel', u'video display', u'big board', u'display board', u'board', u'display'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (11): set([u'wale', u'deal', u'skid', u'strake', u'lumber', u'board', u'chipboard', u'hardboard', u'timber', u'plank', u'matchboard'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (6): set([u'display panel', u'video display', u'big board', u'display board', u'board', u'display'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (4): set([u'fare', u'table', u'training table', u'board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (10): set([u'circuit board', u'mother board', u'pc board', u'add-in', u'circuit card', u'plug-in', u'cpu board', u'printed circuit', u'card', u'board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (4): set([u'fare', u'table', u'training table', u'board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (37): set([u'scoreboard', u'breadboard', u'snowboard', u'workboard', u'mortarboard', u'flat solid', u'palette', u'sheet', u'aquaplane', u'planchette', u'trencher', u'pallet', u'bread board', u'wakeboard', u'springboard', u'board', u'kneeler', u'wake board', u'sideboard', u'floorboard', u'drafting board', u'chopping board', u'drawing board', u'notice board', u'work-board', u'hawk', u'floor board', u'surfboard', u'drywall', u'skateboard', u'dry wall', u'bulletin board', u'draining board', u'cutting board', u'drainboard', u'wallboard', u'ironing board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'oardec', u'appeals', u'alj', u'petitioners', u'hearing', u'complaints', u'defense', u'sccrc', u'page2', u'page1', u'court', u'rulemaking', u'memos', u'review', u'adjudication', u'courtas', u'csrts', u'schindlers', u'administrative', u'evidence', u'reauthorize', u'status', u'csrt', u'detainees', u'hiibel', u'testimony', u'subpoenas', u'petitions', u'combatant', u'reviewed', u'transcript', u'panel', u'tribunal', u'counsel', u'hearings', u'boards', u'boardas', u'disbarment', u'annual', u'petitioner', u'summary', u'depositions', u'yagman', u'grumet', u'pending', u'recommendations', u'parole', u'convened', u'dismissal'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (11): set([u'wale', u'deal', u'skid', u'strake', u'lumber', u'board', u'chipboard', u'hardboard', u'timber', u'plank', u'matchboard'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'oardec', u'appeals', u'alj', u'petitioners', u'hearing', u'complaints', u'defense', u'sccrc', u'page2', u'page1', u'court', u'rulemaking', u'memos', u'review', u'adjudication', u'courtas', u'csrts', u'schindlers', u'administrative', u'evidence', u'reauthorize', u'status', u'csrt', u'detainees', u'hiibel', u'testimony', u'subpoenas', u'petitions', u'combatant', u'reviewed', u'transcript', u'panel', u'tribunal', u'counsel', u'hearings', u'boards', u'boardas', u'disbarment', u'annual', u'petitioner', u'summary', u'depositions', u'yagman', u'grumet', u'pending', u'recommendations', u'parole', u'convened', u'dismissal'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (6): set([u'display panel', u'video display', u'big board', u'display board', u'board', u'display'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'oardec', u'appeals', u'alj', u'petitioners', u'hearing', u'complaints', u'defense', u'sccrc', u'page2', u'page1', u'court', u'rulemaking', u'memos', u'review', u'adjudication', u'courtas', u'csrts', u'schindlers', u'administrative', u'evidence', u'reauthorize', u'status', u'csrt', u'detainees', u'hiibel', u'testimony', u'subpoenas', u'petitions', u'combatant', u'reviewed', u'transcript', u'panel', u'tribunal', u'counsel', u'hearings', u'boards', u'boardas', u'disbarment', u'annual', u'petitioner', u'summary', u'depositions', u'yagman', u'grumet', u'pending', u'recommendations', u'parole', u'convened', u'dismissal'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (6): set([u'display panel', u'video display', u'big board', u'display board', u'board', u'display'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (6): set([u'display panel', u'video display', u'big board', u'display board', u'board', u'display'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (37): set([u'scoreboard', u'breadboard', u'snowboard', u'workboard', u'mortarboard', u'flat solid', u'palette', u'sheet', u'aquaplane', u'planchette', u'trencher', u'pallet', u'bread board', u'wakeboard', u'springboard', u'board', u'kneeler', u'wake board', u'sideboard', u'floorboard', u'drafting board', u'chopping board', u'drawing board', u'notice board', u'work-board', u'hawk', u'floor board', u'surfboard', u'drywall', u'skateboard', u'dry wall', u'bulletin board', u'draining board', u'cutting board', u'drainboard', u'wallboard', u'ironing board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (6): set([u'display panel', u'video display', u'big board', u'display board', u'board', u'display'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'oardec', u'appeals', u'alj', u'petitioners', u'hearing', u'complaints', u'defense', u'sccrc', u'page2', u'page1', u'court', u'rulemaking', u'memos', u'review', u'adjudication', u'courtas', u'csrts', u'schindlers', u'administrative', u'evidence', u'reauthorize', u'status', u'csrt', u'detainees', u'hiibel', u'testimony', u'subpoenas', u'petitions', u'combatant', u'reviewed', u'transcript', u'panel', u'tribunal', u'counsel', u'hearings', u'boards', u'boardas', u'disbarment', u'annual', u'petitioner', u'summary', u'depositions', u'yagman', u'grumet', u'pending', u'recommendations', u'parole', u'convened', u'dismissal'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (50): set([u'gamepad', u'shuffle', u'clip', u'randomizer', u'mousepad', u'keyboard', u'play', u'wii', u'stylus', u'pressing', u'tab', u'trackball', u'touch', u'mouse', u'click', u'multitap', u'slot', u'keypad', u'menu', u'paddle', u'gameboard', u'buttons', u'pad', u'chess', u'navigating', u'tile', u'panel', u'map', u'touchscreen', u'cartridge', u'scroller', u'screen', u'gamecube', u'controller', u'scrolling', u'icon', u'box', u'presses', u'bar', u'die', u'button', u'playfield', u'flip', u'drawing', u'cursor', u'players', u'mechanic', u'joystick', u'tray', u'scroll'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (47): set([u'advisory', u'presidentas', u'nyserda', u'executive', u'appoints', u'coordinator', u'vsc', u'council', u'chair', u'education', u'lawcha', u'examiners', u'trustee', u'standing', u'sits', u'committee', u'chairpersons', u'member', u'commission', u'regents', u'health', u'trustees', u'chairmen', u'secretaries', u'chairman', u'advises', u'administrator', u'advisors', u'icrm', u'governors', u'governing', u'director', u'joint', u'chairwoman', u'supervisory', u'steering', u'cyl', u'chairperson', u'committees', u'boards', u'vice', u'chairs', u'convener', u'equalization', u'directors', u'editorial', u'chairing'])
intersection (2): set([u'commission', u'committee'])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'oardec', u'appeals', u'alj', u'petitioners', u'hearing', u'complaints', u'defense', u'sccrc', u'page2', u'page1', u'court', u'rulemaking', u'memos', u'review', u'adjudication', u'courtas', u'csrts', u'schindlers', u'administrative', u'evidence', u'reauthorize', u'status', u'csrt', u'detainees', u'hiibel', u'testimony', u'subpoenas', u'petitions', u'combatant', u'reviewed', u'transcript', u'panel', u'tribunal', u'counsel', u'hearings', u'boards', u'boardas', u'disbarment', u'annual', u'petitioner', u'summary', u'depositions', u'yagman', u'grumet', u'pending', u'recommendations', u'parole', u'convened', u'dismissal'])
intersection (0): set([])
BOARD
golden (17): set([u'board of appeals', u'board of education', u'draft board', u'federal reserve board', u'commission', u'board', u'planning board', u'governing board', u'board of selectmen', u'directorate', u'appeal board', u'committee', u'school board', u'appeals board', u'advisory board', u'board of directors', u'zoning board'])
predicted (49): set([u'shipas', u'tigrone', u'canberra', u'corypheus', u'hoel', u'reboarded', u'harbour', u'steamer', u'vessel', u'montanan', u'refloating', u'lifeboats', u'boat', u'grampus', u'survivors', u'tringa', u'trathen', u'reboard', u'crew', u'blockader', u'corvette', u'pogy', u'boats', u'vigilance', u'merchantman', u'comdr', u'schooner', u'monitors', u'nicosian', u'ship', u'liferaft', u'barge', u'trawler', u'onboard', u'tug', u'passengers', u'frigate', u'lifeboat', u'boarded', u'hmat', u'yacht', u'titanic', u'bangust', u'aboard', u'baralong', u'enterprise', u'panamint', u'safely', u'admiralty'])
intersection (0): set([])
BOOK
golden (64): set([u'schoolbook', u'paperback', u'picture book', u'reference', u'text', u'pharmacopeia', u'product', u'textbook', u'review copy', u'hardcover', u'book of facts', u'sketch block', u'playbook', u'appointment book', u'sketch pad', u'yearbook', u'album', u'sketchbook', u'folio', u'tome', u'order book', u'text edition', u'copybook', u'school text', u'storybook', u'trade book', u'catalogue', u'appointment calendar', u'publication', u'pop-up', u'softback book', u'folder', u'coffee-table book', u'curiosa', u'soft-cover book', u'paperback book', u'reference book', u'booklet', u'journal', u'songbook', u'paper-back book', u'volume', u'workbook', u'catalog', u'notebook', u'authority', u'brochure', u'bestiary', u'production', u'prayer book', u'prayerbook', u'novel', u'catechism', u'pamphlet', u'reference work', u'phrase book', u'leaflet', u'formulary', u'hardback', u'soft-cover', u'softback', u'pop-up book', u'book', u'trade edition'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (3): set([u'pamphlet', u'novel', u'booklet'])
BOOK
golden (24): set([u'paperback', u'picture book', u'product', u'hardcover', u'sketch block', u'sketch pad', u'album', u'sketchbook', u'folio', u'order book', u'book', u'softback book', u'soft-cover book', u'paperback book', u'journal', u'paper-back book', u'volume', u'notebook', u'production', u'novel', u'hardback', u'soft-cover', u'softback', u'coffee-table book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (1): set([u'novel'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (64): set([u'schoolbook', u'paperback', u'picture book', u'reference', u'text', u'pharmacopeia', u'product', u'textbook', u'review copy', u'hardcover', u'book of facts', u'sketch block', u'playbook', u'appointment book', u'sketch pad', u'yearbook', u'album', u'sketchbook', u'folio', u'tome', u'order book', u'text edition', u'copybook', u'school text', u'storybook', u'trade book', u'catalogue', u'appointment calendar', u'publication', u'pop-up', u'softback book', u'folder', u'coffee-table book', u'curiosa', u'soft-cover book', u'paperback book', u'reference book', u'booklet', u'journal', u'songbook', u'paper-back book', u'volume', u'workbook', u'catalog', u'notebook', u'authority', u'brochure', u'bestiary', u'production', u'prayer book', u'prayerbook', u'novel', u'catechism', u'pamphlet', u'reference work', u'phrase book', u'leaflet', u'formulary', u'hardback', u'soft-cover', u'softback', u'pop-up book', u'book', u'trade edition'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (3): set([u'pamphlet', u'novel', u'booklet'])
BOOK
golden (64): set([u'schoolbook', u'paperback', u'picture book', u'reference', u'text', u'pharmacopeia', u'product', u'textbook', u'review copy', u'hardcover', u'book of facts', u'sketch block', u'playbook', u'appointment book', u'sketch pad', u'yearbook', u'album', u'sketchbook', u'folio', u'tome', u'order book', u'text edition', u'copybook', u'school text', u'storybook', u'trade book', u'catalogue', u'appointment calendar', u'publication', u'pop-up', u'softback book', u'folder', u'coffee-table book', u'curiosa', u'soft-cover book', u'paperback book', u'reference book', u'booklet', u'journal', u'songbook', u'paper-back book', u'volume', u'workbook', u'catalog', u'notebook', u'authority', u'brochure', u'bestiary', u'production', u'prayer book', u'prayerbook', u'novel', u'catechism', u'pamphlet', u'reference work', u'phrase book', u'leaflet', u'formulary', u'hardback', u'soft-cover', u'softback', u'pop-up book', u'book', u'trade edition'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (3): set([u'pamphlet', u'novel', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (24): set([u'paperback', u'picture book', u'product', u'hardcover', u'sketch block', u'sketch pad', u'album', u'sketchbook', u'folio', u'order book', u'book', u'softback book', u'soft-cover book', u'paperback book', u'journal', u'paper-back book', u'volume', u'notebook', u'production', u'novel', u'hardback', u'soft-cover', u'softback', u'coffee-table book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (1): set([u'novel'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (8): set([u'record book', u'scorecard', u'fact', u'record', u'book', u'won-lost record', u'logbook', u'card'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (1): set([u'publication'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (48): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'storybook', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'pamphlet', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'record', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'won-lost record', u'brochure', u'bestiary', u'card', u'prayer book', u'review copy', u'catechism', u'record book', u'textbook', u'scorecard', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'logbook', u'tome', u'fact', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (4): set([u'section', u'book', u'subdivision', u'epistle'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (49): set([u'psalms', u'ezra', u'recension', u'jubilees', u'preface', u'canon', u'verses', u'books', u'mormon', u'yalaua', u'enoch', u'ecclesiastes', u'homiletic', u'eichah', u'treatise', u'sayings', u'deuteronomy', u'septuagint', u'fragment', u'verse', u'describes', u'pericope', u'tobit', u'scripture', u'genesis', u'exodus', u'lecan', u'commentary', u'lamentations', u'pentateuch', u'apocrypha', u'prophecies', u'tanakh', u'proem', u'tanach', u'isaiah', u'yosippon', u'chapter', u'compendium', u'bible', u'masorah', u'redaction', u'homilies', u'apocryphal', u'prayer', u'narrative', u'gospel', u'apocalypse', u'jasher'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (24): set([u'paperback', u'picture book', u'product', u'hardcover', u'sketch block', u'sketch pad', u'album', u'sketchbook', u'folio', u'order book', u'book', u'softback book', u'soft-cover book', u'paperback book', u'journal', u'paper-back book', u'volume', u'notebook', u'production', u'novel', u'hardback', u'soft-cover', u'softback', u'coffee-table book'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (0): set([])
BOOK
golden (48): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'storybook', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'pamphlet', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'record', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'won-lost record', u'brochure', u'bestiary', u'card', u'prayer book', u'review copy', u'catechism', u'record book', u'textbook', u'scorecard', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'logbook', u'tome', u'fact', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (49): set([u'psalms', u'ezra', u'recension', u'jubilees', u'preface', u'canon', u'verses', u'books', u'mormon', u'yalaua', u'enoch', u'ecclesiastes', u'homiletic', u'eichah', u'treatise', u'sayings', u'deuteronomy', u'septuagint', u'fragment', u'verse', u'describes', u'pericope', u'tobit', u'scripture', u'genesis', u'exodus', u'lecan', u'commentary', u'lamentations', u'pentateuch', u'apocrypha', u'prophecies', u'tanakh', u'proem', u'tanach', u'isaiah', u'yosippon', u'chapter', u'compendium', u'bible', u'masorah', u'redaction', u'homilies', u'apocryphal', u'prayer', u'narrative', u'gospel', u'apocalypse', u'jasher'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (49): set([u'detective', u'titled', u'warrior', u'series', u'demonwars', u'imprint', u'fantasy', u'novelization', u'books', u'strip', u'comic', u'superman', u'story', u'superhero', u'anthology', u'miniseries', u'tales', u'trilogy', u'vampire', u'hellboy', u'crime', u'watchmen', u'supernatural', u'overview', u'featuring', u'epic', u'webcomic', u'strips', u'eponymous', u'novels', u'sequel', u'blackmark', u'dc', u'dark', u'tarzan', u'novel', u'adventure', u'mystery', u'graphic', u'wildstorm', u'comics', u'adventures', u'razorline', u'chronicles', u'protagonist', u'published', u'elfquest', u'novella', u'marvel'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (49): set([u'detective', u'titled', u'warrior', u'series', u'demonwars', u'imprint', u'fantasy', u'novelization', u'books', u'strip', u'comic', u'superman', u'story', u'superhero', u'anthology', u'miniseries', u'tales', u'trilogy', u'vampire', u'hellboy', u'crime', u'watchmen', u'supernatural', u'overview', u'featuring', u'epic', u'webcomic', u'strips', u'eponymous', u'novels', u'sequel', u'blackmark', u'dc', u'dark', u'tarzan', u'novel', u'adventure', u'mystery', u'graphic', u'wildstorm', u'comics', u'adventures', u'razorline', u'chronicles', u'protagonist', u'published', u'elfquest', u'novella', u'marvel'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (49): set([u'detective', u'titled', u'warrior', u'series', u'demonwars', u'imprint', u'fantasy', u'novelization', u'books', u'strip', u'comic', u'superman', u'story', u'superhero', u'anthology', u'miniseries', u'tales', u'trilogy', u'vampire', u'hellboy', u'crime', u'watchmen', u'supernatural', u'overview', u'featuring', u'epic', u'webcomic', u'strips', u'eponymous', u'novels', u'sequel', u'blackmark', u'dc', u'dark', u'tarzan', u'novel', u'adventure', u'mystery', u'graphic', u'wildstorm', u'comics', u'adventures', u'razorline', u'chronicles', u'protagonist', u'published', u'elfquest', u'novella', u'marvel'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (1): set([u'publication'])
BOOK
golden (48): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'storybook', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'pamphlet', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'record', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'won-lost record', u'brochure', u'bestiary', u'card', u'prayer book', u'review copy', u'catechism', u'record book', u'textbook', u'scorecard', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'logbook', u'tome', u'fact', u'pop-up book'])
predicted (49): set([u'psalms', u'ezra', u'recension', u'jubilees', u'preface', u'canon', u'verses', u'books', u'mormon', u'yalaua', u'enoch', u'ecclesiastes', u'homiletic', u'eichah', u'treatise', u'sayings', u'deuteronomy', u'septuagint', u'fragment', u'verse', u'describes', u'pericope', u'tobit', u'scripture', u'genesis', u'exodus', u'lecan', u'commentary', u'lamentations', u'pentateuch', u'apocrypha', u'prophecies', u'tanakh', u'proem', u'tanach', u'isaiah', u'yosippon', u'chapter', u'compendium', u'bible', u'masorah', u'redaction', u'homilies', u'apocryphal', u'prayer', u'narrative', u'gospel', u'apocalypse', u'jasher'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (11): set([u'daybook', u'book of account', u'cost ledger', u'journal', u'leger', u'ledger', u'record', u'book', u'account book', u'general ledger', u'subsidiary ledger'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (48): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'storybook', u'trade book', u'catalogue', u'appointment calendar', u'formulary', u'pop-up', u'folder', u'curiosa', u'book', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'card', u'prayer book', u'review copy', u'catechism', u'record book', u'scorecard', u'reference work', u'phrase book', u'leaflet', u'record', u'trade edition', u'workbook', u'logbook', u'pop-up book', u'tome', u'fact', u'won-lost record'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (64): set([u'schoolbook', u'paperback', u'picture book', u'reference', u'text', u'pharmacopeia', u'product', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'sketch block', u'playbook', u'appointment book', u'sketch pad', u'yearbook', u'album', u'sketchbook', u'folio', u'publication', u'text edition', u'copybook', u'school text', u'storybook', u'trade book', u'catalogue', u'appointment calendar', u'pop-up', u'softback book', u'folder', u'prayer book', u'curiosa', u'book', u'soft-cover book', u'paperback book', u'reference book', u'booklet', u'journal', u'songbook', u'paper-back book', u'pop-up book', u'volume', u'workbook', u'catalog', u'notebook', u'textbook', u'brochure', u'bestiary', u'production', u'order book', u'review copy', u'novel', u'catechism', u'hardcover', u'reference work', u'phrase book', u'leaflet', u'formulary', u'hardback', u'soft-cover', u'softback', u'coffee-table book', u'tome', u'trade edition'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (3): set([u'pamphlet', u'novel', u'booklet'])
BOOK
golden (16): set([u'daybook', u'general ledger', u'cost ledger', u'journal', u'leger', u'ledger', u'rule book', u'aggregation', u'record', u'book', u'account book', u'collection', u'book of account', u'accumulation', u'assemblage', u'subsidiary ledger'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (1): set([u'publication'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (24): set([u'paperback', u'picture book', u'product', u'hardcover', u'sketch block', u'sketch pad', u'album', u'sketchbook', u'folio', u'order book', u'book', u'softback book', u'soft-cover book', u'paperback book', u'journal', u'paper-back book', u'volume', u'notebook', u'production', u'novel', u'hardback', u'soft-cover', u'softback', u'coffee-table book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (1): set([u'novel'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (64): set([u'schoolbook', u'paperback', u'picture book', u'reference', u'text', u'pharmacopeia', u'product', u'textbook', u'review copy', u'hardcover', u'book of facts', u'sketch block', u'playbook', u'appointment book', u'sketch pad', u'yearbook', u'album', u'sketchbook', u'folio', u'tome', u'order book', u'text edition', u'copybook', u'school text', u'storybook', u'trade book', u'catalogue', u'appointment calendar', u'publication', u'pop-up', u'softback book', u'folder', u'coffee-table book', u'curiosa', u'soft-cover book', u'paperback book', u'reference book', u'booklet', u'journal', u'songbook', u'paper-back book', u'volume', u'workbook', u'catalog', u'notebook', u'authority', u'brochure', u'bestiary', u'production', u'prayer book', u'prayerbook', u'novel', u'catechism', u'pamphlet', u'reference work', u'phrase book', u'leaflet', u'formulary', u'hardback', u'soft-cover', u'softback', u'pop-up book', u'book', u'trade edition'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (3): set([u'pamphlet', u'novel', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (1): set([u'publication'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (49): set([u'detective', u'titled', u'warrior', u'series', u'demonwars', u'imprint', u'fantasy', u'novelization', u'books', u'strip', u'comic', u'superman', u'story', u'superhero', u'anthology', u'miniseries', u'tales', u'trilogy', u'vampire', u'hellboy', u'crime', u'watchmen', u'supernatural', u'overview', u'featuring', u'epic', u'webcomic', u'strips', u'eponymous', u'novels', u'sequel', u'blackmark', u'dc', u'dark', u'tarzan', u'novel', u'adventure', u'mystery', u'graphic', u'wildstorm', u'comics', u'adventures', u'razorline', u'chronicles', u'protagonist', u'published', u'elfquest', u'novella', u'marvel'])
intersection (0): set([])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (1): set([u'publication'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (45): set([u'essay', u'seminal', u'writings', u'titled', u'memoirs', u'ahistory', u'textbook', u'autobiographical', u'pamphlet', u'paper', u'thesis', u'preface', u'critique', u'isbn', u'biography', u'autobiography', u'afterword', u'publication', u'detailing', u'comments', u'writing', u'critical', u'essays', u'memoir', u'entitled', u'foreword', u'poem', u'booklet', u'journal', u'philosophy', u'ebner', u'collection', u'volume', u'diary', u'serially', u'translation', u'topic', u'novel', u'work', u'article', u'capitalism', u'reflections', u'published', u'novella', u'monograph'])
intersection (4): set([u'pamphlet', u'publication', u'textbook', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (49): set([u'psalms', u'ezra', u'recension', u'jubilees', u'preface', u'canon', u'verses', u'books', u'mormon', u'yalaua', u'enoch', u'ecclesiastes', u'homiletic', u'eichah', u'treatise', u'sayings', u'deuteronomy', u'septuagint', u'fragment', u'verse', u'describes', u'pericope', u'tobit', u'scripture', u'genesis', u'exodus', u'lecan', u'commentary', u'lamentations', u'pentateuch', u'apocrypha', u'prophecies', u'tanakh', u'proem', u'tanach', u'isaiah', u'yosippon', u'chapter', u'compendium', u'bible', u'masorah', u'redaction', u'homilies', u'apocryphal', u'prayer', u'narrative', u'gospel', u'apocalypse', u'jasher'])
intersection (0): set([])
BOOK
golden (64): set([u'schoolbook', u'paperback', u'picture book', u'reference', u'text', u'pharmacopeia', u'product', u'textbook', u'review copy', u'hardcover', u'book of facts', u'sketch block', u'playbook', u'appointment book', u'sketch pad', u'yearbook', u'album', u'sketchbook', u'folio', u'tome', u'order book', u'text edition', u'copybook', u'school text', u'storybook', u'trade book', u'catalogue', u'appointment calendar', u'publication', u'pop-up', u'softback book', u'folder', u'coffee-table book', u'curiosa', u'soft-cover book', u'paperback book', u'reference book', u'booklet', u'journal', u'songbook', u'paper-back book', u'volume', u'workbook', u'catalog', u'notebook', u'authority', u'brochure', u'bestiary', u'production', u'prayer book', u'prayerbook', u'novel', u'catechism', u'pamphlet', u'reference work', u'phrase book', u'leaflet', u'formulary', u'hardback', u'soft-cover', u'softback', u'pop-up book', u'book', u'trade edition'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (3): set([u'pamphlet', u'novel', u'booklet'])
BOOK
golden (41): set([u'schoolbook', u'reference', u'text', u'pharmacopeia', u'authority', u'prayerbook', u'pamphlet', u'book of facts', u'playbook', u'appointment book', u'yearbook', u'publication', u'text edition', u'copybook', u'school text', u'trade book', u'catalogue', u'book', u'pop-up', u'folder', u'curiosa', u'appointment calendar', u'reference book', u'booklet', u'songbook', u'catalog', u'textbook', u'brochure', u'bestiary', u'prayer book', u'review copy', u'catechism', u'storybook', u'reference work', u'phrase book', u'leaflet', u'formulary', u'trade edition', u'workbook', u'tome', u'pop-up book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (2): set([u'pamphlet', u'booklet'])
BOOK
golden (24): set([u'paperback', u'picture book', u'product', u'hardcover', u'sketch block', u'sketch pad', u'album', u'sketchbook', u'folio', u'order book', u'book', u'softback book', u'soft-cover book', u'paperback book', u'journal', u'paper-back book', u'volume', u'notebook', u'production', u'novel', u'hardback', u'soft-cover', u'softback', u'coffee-table book'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (1): set([u'novel'])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (2): set([u'book', u'schedule'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'granta', u'photo', u'puzzle', u'reader', u'locus', u'eisner', u'books', u'magazineas', u'nonfiction', u'periodical', u'editorsa', u'reviewer', u'digest', u'isfic', u'nesfa', u'childrenas', u'humor', u'publication', u'readers', u'review', u'poetry', u'milkweed', u'fiction', u'literary', u'crossword', u'graphis', u'writeras', u'aurealis', u'weekly', u'publishers', u'literature', u'bestsellers', u'cartoonists', u'esquire', u'award', u'parenting', u'illustration', u'conjunctions', u'bestselling', u'penguin', u'chapbook', u'utne', u'readeras', u'reviews', u'magazine', u'booklist', u'opinion', u'cartoonist', u'sf', u'booksellers'])
intersection (0): set([])
BOOK
golden (11): set([u'hold open', u'save', u'keep open', u'request', u'keep', u'book', u'quest', u'bespeak', u'hold', u'call for', u'reserve'])
predicted (50): set([u'sketch', u'blurbs', u'reread', u'manuscript', u'sentence', u'dhalgren', u'pamphlet', u'pratchett', u'narration', u'amisas', u'poe', u'gorgik', u'riplinger', u'poem', u'story', u'postman', u'author', u'movie', u'quotes', u'reader', u'poet', u'reading', u'fictionalizing', u'juiciest', u'narrator', u'pinter', u'readers', u'sequel', u'material', u'vermeer', u'diary', u'streator', u'pages', u'booklet', u'novel', u'heinlein', u'appreciatively', u'thread', u'asimov', u'heartwarming', u'script', u'tale', u'future', u'sonbert', u'wittily', u'bookas', u'piece', u'painting', u'manga', u'unpublishable'])
intersection (0): set([])
COLOR
golden (32): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'coloring', u'heather', u'interestingness', u'visual property', u'complexion', u'nonsolid colour', u'interest', u'skin color', u'shade', u'chromatic colour', u'tint', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'vividness', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (32): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'coloring', u'heather', u'interestingness', u'visual property', u'complexion', u'nonsolid colour', u'interest', u'skin color', u'dithered colour', u'chromatic colour', u'tint', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'vividness', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'shade', u'mottle'])
predicted (48): set([u'lettering', u'widescreen', u'titled', u'version', u'themed', u'series', u'straydog', u'colorized', u'simply', u'advertised', u'spinoff', u'logo', u'special', u'revived', u'jez', u'segments', u'advertisements', u'animation', u'retooled', u'claymation', u'3d', u'ghost', u'videogame', u'promos', u'sprite', u'logos', u'promo', u'agetec', u'trailers', u'game', u'throwback', u'wildguard', u'cartoon', u'mascot', u'revamped', u'tnt', u'bravestarr', u'satellaview', u'package', u'colour', u'versions', u'sachen', u'entex', u'syndicated', u'beige', u'original', u'trailer', u'2k'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'lettering', u'widescreen', u'titled', u'version', u'themed', u'series', u'straydog', u'colorized', u'simply', u'advertised', u'spinoff', u'logo', u'special', u'revived', u'jez', u'segments', u'advertisements', u'animation', u'retooled', u'claymation', u'3d', u'ghost', u'videogame', u'promos', u'sprite', u'logos', u'promo', u'agetec', u'trailers', u'game', u'throwback', u'wildguard', u'cartoon', u'mascot', u'revamped', u'tnt', u'bravestarr', u'satellaview', u'package', u'colour', u'versions', u'sachen', u'entex', u'syndicated', u'beige', u'original', u'trailer', u'2k'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (8): set([u'tone', u'color', u'timbre', u'colour', u'colouration', u'quality', u'coloration', u'timber'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (32): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'coloring', u'heather', u'interestingness', u'visual property', u'complexion', u'nonsolid colour', u'interest', u'skin color', u'dithered colour', u'chromatic colour', u'tint', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'vividness', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'shade', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'shade', u'coloration'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (5): set([u'color', u'vividness', u'colour', u'interestingness', u'interest'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (11): set([u'vividness', u'interestingness', u'tone', u'color', u'timbre', u'colour', u'colouration', u'interest', u'quality', u'coloration', u'timber'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (5): set([u'color', u'vividness', u'colour', u'interestingness', u'interest'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (11): set([u'vividness', u'interestingness', u'tone', u'color', u'timbre', u'colour', u'colouration', u'interest', u'quality', u'coloration', u'timber'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'lettering', u'widescreen', u'titled', u'version', u'themed', u'series', u'straydog', u'colorized', u'simply', u'advertised', u'spinoff', u'logo', u'special', u'revived', u'jez', u'segments', u'advertisements', u'animation', u'retooled', u'claymation', u'3d', u'ghost', u'videogame', u'promos', u'sprite', u'logos', u'promo', u'agetec', u'trailers', u'game', u'throwback', u'wildguard', u'cartoon', u'mascot', u'revamped', u'tnt', u'bravestarr', u'satellaview', u'package', u'colour', u'versions', u'sachen', u'entex', u'syndicated', u'beige', u'original', u'trailer', u'2k'])
intersection (1): set([u'colour'])
COLOR
golden (5): set([u'color', u'vividness', u'colour', u'interestingness', u'interest'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (44): set([u'achromatic color', u'tincture', u'color', u'chromatic color', u'dithered color', u'nonsolid color', u'primary colour', u'pretext', u'achromatic colour', u'colour of law', u'simulacrum', u'visual aspect', u'coloring', u'heather', u'tone', u'verisimilitude', u'gloss', u'camouflage', u'visual property', u'complexion', u'nonsolid colour', u'color of law', u'semblance', u'skin color', u'shade', u'chromatic colour', u'tint', u'heather mixture', u'colouring', u'spectral colour', u'pretense', u'coloration', u'skin colour', u'disguise', u'colour', u'spectral color', u'pretence', u'colouration', u'primary color', u'appearance', u'dithered colour', u'mottle', u'guise', u'face value'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (5): set([u'color', u'vividness', u'colour', u'interestingness', u'interest'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (5): set([u'color', u'vividness', u'colour', u'interestingness', u'interest'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (11): set([u'vividness', u'colouration', u'tone', u'color', u'timbre', u'colour', u'interestingness', u'interest', u'quality', u'coloration', u'timber'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'lettering', u'widescreen', u'titled', u'version', u'themed', u'series', u'straydog', u'colorized', u'simply', u'advertised', u'spinoff', u'logo', u'special', u'revived', u'jez', u'segments', u'advertisements', u'animation', u'retooled', u'claymation', u'3d', u'ghost', u'videogame', u'promos', u'sprite', u'logos', u'promo', u'agetec', u'trailers', u'game', u'throwback', u'wildguard', u'cartoon', u'mascot', u'revamped', u'tnt', u'bravestarr', u'satellaview', u'package', u'colour', u'versions', u'sachen', u'entex', u'syndicated', u'beige', u'original', u'trailer', u'2k'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (5): set([u'color', u'vividness', u'colour', u'interestingness', u'interest'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'lettering', u'widescreen', u'titled', u'version', u'themed', u'series', u'straydog', u'colorized', u'simply', u'advertised', u'spinoff', u'logo', u'special', u'revived', u'jez', u'segments', u'advertisements', u'animation', u'retooled', u'claymation', u'3d', u'ghost', u'videogame', u'promos', u'sprite', u'logos', u'promo', u'agetec', u'trailers', u'game', u'throwback', u'wildguard', u'cartoon', u'mascot', u'revamped', u'tnt', u'bravestarr', u'satellaview', u'package', u'colour', u'versions', u'sachen', u'entex', u'syndicated', u'beige', u'original', u'trailer', u'2k'])
intersection (1): set([u'colour'])
COLOR
golden (41): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'coloring material', u'indicator', u'coloring', u'heather', u'paint', u'complexion', u'nonsolid colour', u'stain', u'visual property', u'skin color', u'colouring material', u'hematochrome', u'material', u'chromatic colour', u'pigment', u'tint', u'heather mixture', u'colouring', u'dyestuff', u'dye', u'spectral colour', u'coloration', u'skin colour', u'shade', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'stuff', u'dithered colour', u'mottle', u'mordant'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (44): set([u'pretence', u'achromatic color', u'tincture', u'color', u'chromatic color', u'dithered color', u'disguise', u'primary colour', u'pretext', u'colour of law', u'achromatic colour', u'simulacrum', u'visual aspect', u'coloring', u'heather', u'tone', u'verisimilitude', u'gloss', u'camouflage', u'visual property', u'complexion', u'nonsolid colour', u'color of law', u'semblance', u'skin color', u'shade', u'chromatic colour', u'tint', u'heather mixture', u'colouring', u'spectral colour', u'pretense', u'coloration', u'skin colour', u'nonsolid color', u'colour', u'spectral color', u'appearance', u'colouration', u'primary color', u'dithered colour', u'mottle', u'guise', u'face value'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'lettering', u'widescreen', u'titled', u'version', u'themed', u'series', u'straydog', u'colorized', u'simply', u'advertised', u'spinoff', u'logo', u'special', u'revived', u'jez', u'segments', u'advertisements', u'animation', u'retooled', u'claymation', u'3d', u'ghost', u'videogame', u'promos', u'sprite', u'logos', u'promo', u'agetec', u'trailers', u'game', u'throwback', u'wildguard', u'cartoon', u'mascot', u'revamped', u'tnt', u'bravestarr', u'satellaview', u'package', u'colour', u'versions', u'sachen', u'entex', u'syndicated', u'beige', u'original', u'trailer', u'2k'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (15): set([u'indicator', u'colouring material', u'hematochrome', u'color', u'colour', u'material', u'pigment', u'tincture', u'paint', u'stuff', u'dyestuff', u'dye', u'stain', u'mordant', u'coloring material'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'lettering', u'widescreen', u'titled', u'version', u'themed', u'series', u'straydog', u'colorized', u'simply', u'advertised', u'spinoff', u'logo', u'special', u'revived', u'jez', u'segments', u'advertisements', u'animation', u'retooled', u'claymation', u'3d', u'ghost', u'videogame', u'promos', u'sprite', u'logos', u'promo', u'agetec', u'trailers', u'game', u'throwback', u'wildguard', u'cartoon', u'mascot', u'revamped', u'tnt', u'bravestarr', u'satellaview', u'package', u'colour', u'versions', u'sachen', u'entex', u'syndicated', u'beige', u'original', u'trailer', u'2k'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'lightmaps', u'luminance', u'subpixel', u'320200', u'colors', u'vectorscope', u'displays', u'crts', u'monochrome', u'resolutions', u'backlight', u'digicams', u'palette', u'matrix', u'dithering', u'chroma', u'bitmaps', u'rgb', u'pdps', u'greyscale', u'2d', u'image', u'rgbi', u'3d', u'picture', u'lcds', u'composite', u'ypbpr', u'grayscale', u'binning', u'800x600', u'srgb', u'pixels', u'raster', u'640200', u'rasterized', u'subpixels', u'colour', u'colorspace', u'texturing', u'pixel', u'cmyk', u'demosaicing', u'transparency', u'1280x720', u'voxels', u'subsampling', u'backlights', u'display', u'dot'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (11): set([u'vividness', u'interestingness', u'tone', u'color', u'timbre', u'colour', u'colouration', u'interest', u'quality', u'coloration', u'timber'])
predicted (48): set([u'modesty', u'background', u'kinky', u'individuality', u'fetishistic', u'symbols', u'colors', u'purity', u'clothing', u'displaying', u'matching', u'bowties', u'vivid', u'dress', u'outward', u'colours', u'hues', u'uniqueness', u'accentuate', u'masculinity', u'masculine', u'personas', u'pride', u'wearing', u'tattoos', u'tints', u'colorless', u'makeup', u'negro', u'whiteness', u'feminine', u'femininity', u'imagery', u'mannerisms', u'facial', u'artistry', u'morbidity', u'coarseness', u'domesticity', u'sensuous', u'vibrant', u'colour', u'shades', u'shapes', u'blackness', u'wearer', u'display', u'clothes'])
intersection (1): set([u'colour'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COLOR
golden (29): set([u'achromatic color', u'tincture', u'color', u'dithered color', u'nonsolid color', u'primary colour', u'tone', u'achromatic colour', u'tint', u'heather', u'visual property', u'complexion', u'nonsolid colour', u'skin color', u'shade', u'chromatic colour', u'coloring', u'heather mixture', u'colouring', u'spectral colour', u'coloration', u'skin colour', u'colour', u'spectral color', u'chromatic color', u'colouration', u'primary color', u'dithered colour', u'mottle'])
predicted (50): set([u'hue', u'mauve', u'violet', u'grayish', u'yellow', u'bluish', u'bright', u'skin', u'tan', u'pale', u'cream', u'pink', u'colouration', u'tint', u'mottling', u'purple', u'uniform', u'colours', u'hues', u'black', u'translucent', u'orange', u'brownish', u'white', u'purplish', u'red', u'brown', u'splotches', u'blue', u'coloured', u'dark', u'lighter', u'pinkish', u'dull', u'coloration', u'colored', u'reddish', u'brilliant', u'colour', u'shades', u'grey', u'flecking', u'mottled', u'yellowish', u'flecks', u'green', u'shade', u'greenish', u'shiny', u'darker'])
intersection (5): set([u'colouration', u'colour', u'tint', u'coloration', u'shade'])
COMMON
golden (2): set([u'common', u'coarse'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'fern', u'groundsel', u'knotgrass', u'rockrose', u'analis', u'abalones', u'cynopterus', u'atriplex', u'cottongrass', u'dendragapus', u'fruited', u'scarce', u'twinflower', u'owstoni', u'cichlid', u'whiting', u'mynas', u'scoters', u'amphilophus', u'plecostomus', u'aviculture', u'wood', u'crab', u'goosefoot', u'widespread', u'ringneck', u'sorbus', u'snowberry', u'haliotis', u'phasianus', u'tormentil', u'conures', u'fleabane', u'willowherb', u'narrowleaf', u'true', u'centropomus', u'rare', u'panaque', u'characins', u'boxthorn', u'commonly', u'quandong', u'meadowsweet', u'woodlouse', u'characin', u'mulga', u'mackerels', u'lagopus', u'woodcocks'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'bailiffs', u'vestries', u'traprain', u'inns', u'hartcliffe', u'vicarages', u'magistratesa', u'sheriffdom', u'justiciary', u'gilds', u'barristers', u'sidcot', u'dockets', u'oyer', u'middlesex', u'hawridge', u'bailies', u'workhouse', u'solicitors', u'bablake', u'magistrates', u'sheriffdoms', u'guardianships', u'sayes', u'holding', u'whitworth', u'inclosure', u'cholesbury', u'gentlewomen', u'tenancies', u'chequers', u'conveyances', u'courts', u'clerks', u'wyvern', u'workhouses', u'chancery', u'probate', u'brehon', u'shrievalty', u'publicans', u'parsonages', u'norfolk', u'manorial', u'schepenen', u'grazeley', u'orphansa', u'conveyancing', u'serjeants', u'workmenas'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'bailiffs', u'vestries', u'traprain', u'inns', u'hartcliffe', u'vicarages', u'magistratesa', u'sheriffdom', u'justiciary', u'gilds', u'barristers', u'sidcot', u'dockets', u'oyer', u'middlesex', u'hawridge', u'bailies', u'workhouse', u'solicitors', u'bablake', u'magistrates', u'sheriffdoms', u'guardianships', u'sayes', u'holding', u'whitworth', u'inclosure', u'cholesbury', u'gentlewomen', u'tenancies', u'chequers', u'conveyances', u'courts', u'clerks', u'wyvern', u'workhouses', u'chancery', u'probate', u'brehon', u'shrievalty', u'publicans', u'parsonages', u'norfolk', u'manorial', u'schepenen', u'grazeley', u'orphansa', u'conveyancing', u'serjeants', u'workmenas'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'fern', u'groundsel', u'knotgrass', u'rockrose', u'analis', u'abalones', u'cynopterus', u'atriplex', u'cottongrass', u'dendragapus', u'fruited', u'scarce', u'twinflower', u'owstoni', u'cichlid', u'whiting', u'mynas', u'scoters', u'amphilophus', u'plecostomus', u'aviculture', u'wood', u'crab', u'goosefoot', u'widespread', u'ringneck', u'sorbus', u'snowberry', u'haliotis', u'phasianus', u'tormentil', u'conures', u'fleabane', u'willowherb', u'narrowleaf', u'true', u'centropomus', u'rare', u'panaque', u'characins', u'boxthorn', u'commonly', u'quandong', u'meadowsweet', u'woodlouse', u'characin', u'mulga', u'mackerels', u'lagopus', u'woodcocks'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'bailiffs', u'vestries', u'traprain', u'inns', u'hartcliffe', u'vicarages', u'magistratesa', u'sheriffdom', u'justiciary', u'gilds', u'barristers', u'sidcot', u'dockets', u'oyer', u'middlesex', u'hawridge', u'bailies', u'workhouse', u'solicitors', u'bablake', u'magistrates', u'sheriffdoms', u'guardianships', u'sayes', u'holding', u'whitworth', u'inclosure', u'cholesbury', u'gentlewomen', u'tenancies', u'chequers', u'conveyances', u'courts', u'clerks', u'wyvern', u'workhouses', u'chancery', u'probate', u'brehon', u'shrievalty', u'publicans', u'parsonages', u'norfolk', u'manorial', u'schepenen', u'grazeley', u'orphansa', u'conveyancing', u'serjeants', u'workmenas'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'bailiffs', u'vestries', u'traprain', u'inns', u'hartcliffe', u'vicarages', u'magistratesa', u'sheriffdom', u'justiciary', u'gilds', u'barristers', u'sidcot', u'dockets', u'oyer', u'middlesex', u'hawridge', u'bailies', u'workhouse', u'solicitors', u'bablake', u'magistrates', u'sheriffdoms', u'guardianships', u'sayes', u'holding', u'whitworth', u'inclosure', u'cholesbury', u'gentlewomen', u'tenancies', u'chequers', u'conveyances', u'courts', u'clerks', u'wyvern', u'workhouses', u'chancery', u'probate', u'brehon', u'shrievalty', u'publicans', u'parsonages', u'norfolk', u'manorial', u'schepenen', u'grazeley', u'orphansa', u'conveyancing', u'serjeants', u'workmenas'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'bailiffs', u'vestries', u'traprain', u'inns', u'hartcliffe', u'vicarages', u'magistratesa', u'sheriffdom', u'justiciary', u'gilds', u'barristers', u'sidcot', u'dockets', u'oyer', u'middlesex', u'hawridge', u'bailies', u'workhouse', u'solicitors', u'bablake', u'magistrates', u'sheriffdoms', u'guardianships', u'sayes', u'holding', u'whitworth', u'inclosure', u'cholesbury', u'gentlewomen', u'tenancies', u'chequers', u'conveyances', u'courts', u'clerks', u'wyvern', u'workhouses', u'chancery', u'probate', u'brehon', u'shrievalty', u'publicans', u'parsonages', u'norfolk', u'manorial', u'schepenen', u'grazeley', u'orphansa', u'conveyancing', u'serjeants', u'workmenas'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'bailiffs', u'vestries', u'traprain', u'inns', u'hartcliffe', u'vicarages', u'magistratesa', u'sheriffdom', u'justiciary', u'gilds', u'barristers', u'sidcot', u'dockets', u'oyer', u'middlesex', u'hawridge', u'bailies', u'workhouse', u'solicitors', u'bablake', u'magistrates', u'sheriffdoms', u'guardianships', u'sayes', u'holding', u'whitworth', u'inclosure', u'cholesbury', u'gentlewomen', u'tenancies', u'chequers', u'conveyances', u'courts', u'clerks', u'wyvern', u'workhouses', u'chancery', u'probate', u'brehon', u'shrievalty', u'publicans', u'parsonages', u'norfolk', u'manorial', u'schepenen', u'grazeley', u'orphansa', u'conveyancing', u'serjeants', u'workmenas'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'coarse', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (2): set([u'mutual', u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'because', u'particularly', u'often', u'problematic', u'desirable', u'cf', u'efficient', u'triptans', u'latchup', u'kyphoplasty', u'conventional', u'perhaps', u'restricted', u'whereas', u'generally', u'suboptimal', u'application', u'drawback', u'include', u'predominant', u'sma', u'non', u'dcm', u'familiar', u'however', u'preferred', u'notably', u'restrictive', u'important', u'importantly', u'additionally', u'frequently', u'detecting', u'tbd', u'like', u'comparison', u'especially', u'most', u'this', u'specialized', u'identifying', u'unnecessary', u'commonly', u'fortunately', u'while', u'trypanophobia', u'obvious', u'similar', u'furthermore', u'typical'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
COMMON
golden (1): set([u'common'])
predicted (50): set([u'connotation', u'indeed', u'consistent', u'modern', u'synonymous', u'used', u'sense', u'proper', u'connotes', u'folk', u'traditional', u'different', u'distinct', u'generally', u'etymology', u'tendency', u'colloquial', u'usage', u'linguistic', u'historically', u'contrast', u'pervasive', u'derogatory', u'commonplace', u'terms', u'form', u'metaphorical', u'very', u'symbolic', u'practice', u'polite', u'but', u'neutral', u'uncommon', u'distinctly', u'taboo', u'archaisms', u'peculiar', u'intrinsically', u'connotations', u'pejorative', u'word', u'prevalent', u'meaning', u'obviously', u'specific', u'tsotsitaal', u'norm', u'context', u'terminology'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (34): set([u'control', u'predominance', u'authority', u'supremacy', u'powerfulness', u'say-so', u'despotism', u'rule', u'ascendent', u'hold', u'iron fist', u'regulation', u'predomination', u'dominance', u'authorization', u'status', u'absolutism', u'ascendant', u'power', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'potency', u'monopoly', u'mastery', u'corporatism', u'dominion', u'authorisation', u'rein', u'ascendancy'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (6): set([u'power', u'rule', u'dominance', u'domination', u'dominion', u'ascendancy'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (2): set([u'dominance', u'power'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (21): set([u'control', u'discipline', u'potency', u'temperance', u'continence', u'power', u'restraint', u'moderation', u'authority', u'self-restraint', u'powerfulness', u'say-so', u'inhibition', u'corporatism', u'iron fist', u'temperateness', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (2): set([u'dominance', u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (8): set([u'control', u'ceiling', u'floor', u'cap', u'roof', u'base', u'price control', u'economic policy'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (35): set([u'control', u'predominance', u'authority', u'supremacy', u'powerfulness', u'say-so', u'despotism', u'relation', u'corporatism', u'ascendent', u'hold', u'iron fist', u'regulation', u'predomination', u'dominance', u'authorization', u'status', u'absolutism', u'ascendant', u'power', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'potency', u'monopoly', u'mastery', u'rule', u'dominion', u'authorisation', u'rein', u'ascendancy'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (14): set([u'control', u'dial', u'cruise control', u'valve', u'switch', u'governor', u'regulator', u'controller', u'electrical switch', u'electric switch', u'mechanism', u'disk controller', u'handwheel', u'joystick'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (9): set([u'control', u'ceiling', u'floor', u'cap', u'roof', u'base', u'relation', u'price control', u'economic policy'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (2): set([u'dominance', u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (2): set([u'dominance', u'power'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'operations', u'catsa', u'directorate', u'firefighting', u'cbrn', u'airborne', u'usstratcom', u'surveillance', u'electronic', u'ground', u'defence', u'requirements', u'jasdf', u'airlfit', u'interception', u'responsibilities', u'capabilities', u'operational', u'jrcc', u'maintenance', u'evacuation', u'responsibility', u'c4i', u'norad', u'rescue', u'emergency', u'materiel', u'fire', u'components', u'tactical', u'medevac', u'joint', u'controller', u'management', u'traffic', u'aeromedical', u'aviation', u'response', u'readiness', u'lass', u'c3i', u'dod', u'controllers', u'communications', u'warning', u'command', u'logistic', u'logistical', u'security', u'inspection'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (15): set([u'control', u'dial', u'cruise control', u'valve', u'controller', u'governor', u'regulator', u'switch', u'electrical switch', u'electric switch', u'mechanism', u'disk controller', u'handwheel', u'joystick', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (14): set([u'control', u'dial', u'cruise control', u'valve', u'switch', u'governor', u'regulator', u'controller', u'electrical switch', u'electric switch', u'mechanism', u'disk controller', u'handwheel', u'joystick'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (6): set([u'control', u'bodily process', u'body process', u'activity', u'bodily function', u'motor control'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (21): set([u'control', u'discipline', u'potency', u'temperance', u'continence', u'power', u'restraint', u'moderation', u'authority', u'self-restraint', u'powerfulness', u'say-so', u'inhibition', u'corporatism', u'iron fist', u'temperateness', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (34): set([u'control', u'predominance', u'authority', u'supremacy', u'powerfulness', u'say-so', u'despotism', u'rule', u'ascendent', u'hold', u'iron fist', u'regulation', u'predomination', u'dominance', u'authorization', u'status', u'absolutism', u'ascendant', u'power', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'potency', u'monopoly', u'mastery', u'corporatism', u'dominion', u'authorisation', u'rein', u'ascendancy'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (23): set([u'control', u'predominance', u'supremacy', u'despotism', u'ascendent', u'regulation', u'predomination', u'dominance', u'status', u'absolutism', u'ascendant', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'monopoly', u'mastery', u'rule', u'dominion', u'ascendancy'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (5): set([u'domination', u'ascendancy', u'dominance', u'rule', u'dominion'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (14): set([u'control', u'dial', u'cruise control', u'valve', u'switch', u'governor', u'regulator', u'controller', u'electrical switch', u'electric switch', u'mechanism', u'disk controller', u'handwheel', u'joystick'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (1): set([u'switch'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (2): set([u'dominance', u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'operations', u'catsa', u'directorate', u'firefighting', u'cbrn', u'airborne', u'usstratcom', u'surveillance', u'electronic', u'ground', u'defence', u'requirements', u'jasdf', u'airlfit', u'interception', u'responsibilities', u'capabilities', u'operational', u'jrcc', u'maintenance', u'evacuation', u'responsibility', u'c4i', u'norad', u'rescue', u'emergency', u'materiel', u'fire', u'components', u'tactical', u'medevac', u'joint', u'controller', u'management', u'traffic', u'aeromedical', u'aviation', u'response', u'readiness', u'lass', u'c3i', u'dod', u'controllers', u'communications', u'warning', u'command', u'logistic', u'logistical', u'security', u'inspection'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (14): set([u'control', u'dial', u'cruise control', u'valve', u'switch', u'governor', u'regulator', u'controller', u'electrical switch', u'electric switch', u'mechanism', u'disk controller', u'handwheel', u'joystick'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (1): set([u'switch'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (2): set([u'dominance', u'power'])
CONTROL
golden (14): set([u'control', u'dial', u'cruise control', u'valve', u'switch', u'governor', u'regulator', u'controller', u'electrical switch', u'electric switch', u'mechanism', u'disk controller', u'handwheel', u'joystick'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (1): set([u'switch'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (5): set([u'control', u'control condition', u'criterion', u'relation', u'standard'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (34): set([u'control', u'predominance', u'authority', u'supremacy', u'powerfulness', u'say-so', u'despotism', u'rule', u'ascendent', u'hold', u'iron fist', u'regulation', u'predomination', u'dominance', u'authorization', u'status', u'absolutism', u'ascendant', u'power', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'potency', u'monopoly', u'mastery', u'corporatism', u'dominion', u'authorisation', u'rein', u'ascendancy'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (9): set([u'control', u'discipline', u'temperance', u'continence', u'restraint', u'self-restraint', u'moderation', u'inhibition', u'temperateness'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (2): set([u'dominance', u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (23): set([u'control', u'predominance', u'supremacy', u'despotism', u'ascendent', u'regulation', u'predomination', u'dominance', u'status', u'absolutism', u'ascendant', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'monopoly', u'mastery', u'rule', u'dominion', u'ascendancy'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
CONTROL
golden (34): set([u'control', u'predominance', u'authority', u'supremacy', u'powerfulness', u'say-so', u'despotism', u'rule', u'ascendent', u'hold', u'iron fist', u'regulation', u'predomination', u'dominance', u'authorization', u'status', u'absolutism', u'ascendant', u'power', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'potency', u'monopoly', u'mastery', u'corporatism', u'dominion', u'authorisation', u'rein', u'ascendancy'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (34): set([u'control', u'predominance', u'authority', u'supremacy', u'powerfulness', u'say-so', u'despotism', u'rule', u'ascendent', u'hold', u'iron fist', u'regulation', u'predomination', u'dominance', u'authorization', u'status', u'absolutism', u'ascendant', u'power', u'ascendency', u'domination', u'ascendence', u'prepotency', u'condition', u'tyranny', u'ascendance', u'potency', u'monopoly', u'mastery', u'corporatism', u'dominion', u'authorisation', u'rein', u'ascendancy'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (4): set([u'control', u'control condition', u'criterion', u'standard'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (1): set([u'power'])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (49): set([u'temporarily', u'sovereignity', u'overlordship', u'remained', u'consolidated', u'over', u'possessions', u'thus', u'effectively', u'disputed', u'protectorate', u'consolidating', u'djolof', u'suzerainty', u'nominally', u'realm', u'thereby', u'weakened', u'nonetheless', u'assumed', u'administration', u'territories', u'nominal', u'under', u'sovereignty', u'overlords', u'sway', u'dominance', u'hegemony', u'possession', u'jurisdiction', u'controlled', u'power', u'seizing', u'dominions', u'domination', u'leadership', u'hands', u'regained', u'ceding', u'gained', u'partitioning', u'wrested', u'ambitions', u'rule', u'unchallenged', u'dominion', u'whole', u'ascendancy'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (50): set([u'simple', u'hybrid', u'synchronous', u'switches', u'circuitry', u'timer', u'controllers', u'electronic', u'analog', u'loudspeaker', u'terminal', u'microphone', u'monitoring', u'monitor', u'clocking', u'wiring', u'controls', u'passive', u'communication', u'ics', u'integrated', u'inputs', u'controlled', u'provided', u'inbuilt', u'mechanisms', u'modular', u'wired', u'signaling', u'onboard', u'loads', u'panel', u'hardware', u'multi', u'remote', u'accelerometer', u'cable', u'transmission', u'navigation', u'setup', u'manual', u'redundant', u'switching', u'capability', u'switch', u'circuit', u'signalling', u'voice', u'automatic', u'display'])
intersection (0): set([])
CONTROL
golden (13): set([u'control', u'potency', u'power', u'iron fist', u'authority', u'powerfulness', u'say-so', u'corporatism', u'authorisation', u'rein', u'hold', u'dominance', u'authorization'])
predicted (49): set([u'patientsa', u'interventions', u'inadequate', u'testing', u'encouraging', u'outcomes', u'assess', u'nutrigenomics', u'behavioural', u'ameliorate', u'functioning', u'intervention', u'management', u'paradoxically', u'eradication', u'physiological', u'psychopharmacological', u'controls', u'preventing', u'potential', u'health', u'promoting', u'invasive', u'safety', u'effectiveness', u'assessment', u'nutrition', u'measures', u'controlled', u'suppress', u'stressors', u'resistance', u'prescribing', u'communicable', u'environmental', u'assessing', u'optimal', u'preventative', u'immunological', u'drugas', u'identifying', u'tolerance', u'disease', u'undernutrition', u'improves', u'strategies', u'fertility', u'prevention', u'therapeutic'])
intersection (0): set([])
CONTROL
golden (2): set([u'control', u'relation'])
predicted (50): set([u'restore', u'mazone', u'force', u'vattic', u'fury', u'successfully', u'somehow', u'yubel', u'megatron', u'sharrakor', u'belphemon', u'wraith', u'teleport', u'teleporting', u'destroying', u'memories', u'kiruru', u'duplicate', u'willpower', u'absorbing', u'attack', u'destroy', u'xana', u'creature', u'matoombo', u'teleports', u'ability', u'power', u'drains', u'absorb', u'drako', u'leanbow', u'manipulation', u'gallante', u'absorbs', u'shadow', u'orb', u'implant', u'minions', u'destruction', u'drain', u'magic', u'summoning', u'krona', u'udonna', u'jutah', u'grasp', u'balance', u'powers', u'vanquish'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (19): set([u'blue', u'saturnine', u'gloomy', u'drear', u'sullen', u'disconsolate', u'glum', u'sour', u'dreary', u'dingy', u'morose', u'dismal', u'dour', u'drab', u'dark', u'sorry', u'glowering', u'grim', u'moody'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (11): set([u'blue', u'dark', u'drear', u'disconsolate', u'dreary', u'dingy', u'gloomy', u'dismal', u'drab', u'sorry', u'grim'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (1): set([u'blue'])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (11): set([u'dark', u'dour', u'morose', u'sinister', u'saturnine', u'sour', u'black', u'glum', u'glowering', u'sullen', u'moody'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (2): set([u'dark', u'benighted'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (13): set([u'blue', u'dark', u'drear', u'disconsolate', u'sinister', u'dreary', u'dingy', u'gloomy', u'dismal', u'drab', u'black', u'sorry', u'grim'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (2): set([u'gloomy', u'dreary'])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (11): set([u'blue', u'dingy', u'drear', u'disconsolate', u'dreary', u'dark', u'gloomy', u'dismal', u'drab', u'sorry', u'grim'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (2): set([u'gloomy', u'dreary'])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'trilogy', u'titled', u'angel', u'warrior', u'gods', u'demon', u'hollow', u'alien', u'cult', u'lion', u'hellraiser', u'ghosts', u'beyond', u'horse', u'miniseries', u'tales', u'danger', u'elf', u'vampire', u'hellboy', u'presents', u'book', u'black', u'epic', u'rider', u'creature', u'ghost', u'midnight', u'eternal', u'sandman', u'evil', u'blood', u'invisible', u'shadow', u'thriller', u'endless', u'shadows', u'heaven', u'redemption', u'fantasy', u'strange', u'cat', u'planet', u'chronicles', u'zombies', u'popgun', u'gingerbread', u'entitled', u'nightmare', u'adventure'])
intersection (0): set([])
DARK
golden (9): set([u'saturnine', u'dour', u'morose', u'sour', u'dark', u'glum', u'glowering', u'sullen', u'moody'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (11): set([u'blue', u'dingy', u'drear', u'disconsolate', u'dreary', u'dark', u'gloomy', u'dismal', u'drab', u'sorry', u'grim'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (2): set([u'gloomy', u'dreary'])
DARK
golden (11): set([u'blue', u'dingy', u'drear', u'disconsolate', u'dreary', u'dark', u'gloomy', u'dismal', u'drab', u'sorry', u'grim'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'trilogy', u'titled', u'angel', u'warrior', u'gods', u'demon', u'hollow', u'alien', u'cult', u'lion', u'hellraiser', u'ghosts', u'beyond', u'horse', u'miniseries', u'tales', u'danger', u'elf', u'vampire', u'hellboy', u'presents', u'book', u'black', u'epic', u'rider', u'creature', u'ghost', u'midnight', u'eternal', u'sandman', u'evil', u'blood', u'invisible', u'shadow', u'thriller', u'endless', u'shadows', u'heaven', u'redemption', u'fantasy', u'strange', u'cat', u'planet', u'chronicles', u'zombies', u'popgun', u'gingerbread', u'entitled', u'nightmare', u'adventure'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (11): set([u'dark', u'dour', u'morose', u'sinister', u'saturnine', u'sour', u'black', u'glum', u'glowering', u'sullen', u'moody'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (21): set([u'blue', u'dark', u'dour', u'morose', u'disconsolate', u'sour', u'sinister', u'dreary', u'dingy', u'drear', u'saturnine', u'gloomy', u'dismal', u'drab', u'glum', u'black', u'sorry', u'glowering', u'sullen', u'grim', u'moody'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (2): set([u'gloomy', u'dreary'])
DARK
golden (9): set([u'saturnine', u'dour', u'morose', u'sour', u'dark', u'glum', u'glowering', u'sullen', u'moody'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (9): set([u'saturnine', u'dour', u'morose', u'sour', u'dark', u'glum', u'glowering', u'sullen', u'moody'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (11): set([u'blue', u'dingy', u'drear', u'disconsolate', u'dreary', u'dark', u'gloomy', u'dismal', u'drab', u'sorry', u'grim'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (2): set([u'gloomy', u'dreary'])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (3): set([u'dark', u'sinister', u'black'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (9): set([u'dark', u'dour', u'morose', u'sour', u'saturnine', u'glum', u'glowering', u'sullen', u'moody'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (11): set([u'blue', u'dingy', u'drear', u'disconsolate', u'dreary', u'dark', u'gloomy', u'dismal', u'drab', u'sorry', u'grim'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (13): set([u'blue', u'dingy', u'drear', u'disconsolate', u'sinister', u'dreary', u'dark', u'gloomy', u'dismal', u'drab', u'black', u'sorry', u'grim'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'upperparts', u'flecked', u'lighter', u'yellowish', u'color', u'mauve', u'grayish', u'yellow', u'bluish', u'whitish', u'bright', u'skin', u'velvety', u'tan', u'pale', u'purplish', u'pink', u'tint', u'purple', u'silvery', u'black', u'flecks', u'blackish', u'orange', u'green', u'white', u'cream', u'red', u'paler', u'brown', u'underparts', u'blue', u'coloured', u'breast', u'iridescent', u'pinkish', u'dull', u'greyish', u'gray', u'colored', u'reddish', u'splotches', u'colour', u'grey', u'mottled', u'brownish', u'beige', u'greenish', u'shiny', u'darker'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'atmosphere', u'monotonous', u'phantasmagoric', u'foreboding', u'gloomy', u'bright', u'static', u'shapeless', u'darkest', u'doomy', u'mist', u'dense', u'shimmering', u'dreamlike', u'sun', u'swirls', u'sky', u'sunlit', u'ethereal', u'strange', u'pulsating', u'mysterious', u'falling', u'dramatically', u'atmospheres', u'serene', u'colorless', u'fantastic', u'dreary', u'permeating', u'mood', u'brooding', u'kaleidoscopic', u'shifting', u'nightmarish', u'claustrophobic', u'silvery', u'glow', u'shadows', u'gloom', u'gritty', u'dusty', u'light', u'eerie', u'lifeless', u'darkened', u'swirling', u'blackness', u'tones', u'halos'])
intersection (0): set([])
DARK
golden (1): set([u'dark'])
predicted (50): set([u'spawn', u'mystical', u'wizard', u'ogre', u'magically', u'minion', u'necromancer', u'demon', u'yubel', u'summons', u'kalibak', u'zero', u'skeletor', u'talisman', u'spectre', u'enchantress', u'wraith', u'golem', u'horde', u'shabranigdo', u'chaos', u'battles', u'takhisis', u'summoned', u'warlock', u'ganon', u'monster', u'phoenix', u'guardian', u'doppelganger', u'evil', u'beast', u'resurrects', u'hulk', u'sorceress', u'shadow', u'goblin', u'spirit', u'minions', u'shadows', u'mephisto', u'summoning', u'battling', u'possessed', u'dragon', u'crystal', u'demonic', u'archfiend', u'powerless', u'darkseid'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (16): set([u'sell-by date', u'rain date', u'mean solar day', u'natal day', u'day of the month', u'maturity', u'future date', u'date', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (18): set([u'blind date', u'rain date', u'appointment', u'double date', u'engagement', u'tryst', u'future date', u'date', u'24-hour interval', u'sell-by date', u'rendezvous', u'twenty-four hours', u'mean solar day', u'twenty-four hour period', u'solar day', u'meeting', u'day', u'get together'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (2): set([u'date', u'edible fruit'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (16): set([u'sell-by date', u'rain date', u'mean solar day', u'natal day', u'day of the month', u'maturity', u'future date', u'date', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (49): set([u'attest', u'ad', u'1200', u'thirteenth', u'back', u'13th', u'datable', u'ostraca', u'fourteenth', u'7th', u'11th', u'6th', u'5th', u'1200s', u'least', u'14th', u'1500', u'onwards', u'dynastic', u'probably', u'dating', u'dateable', u'twelfth', u'15th', u'era', u'neolithic', u'1400s', u'9th', u'bc', u'earlier', u'fifteenth', u'period', u'postclassic', u'documents', u'earliest', u'pottery', u'dates', u'ramesside', u'possibly', u'12th', u'preclassic', u'1100', u'pictish', u'dated', u'1300s', u'bce', u'10th', u'16th', u'8th'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (2): set([u'date', u'edible fruit'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (2): set([u'date', u'edible fruit'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (18): set([u'calendar month', u'rain date', u'mean solar day', u'civil day', u'calendar year', u'calendar day', u'month', u'future date', u'date', u'epoch', u'24-hour interval', u'civil year', u'sell-by date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'date of reference', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (18): set([u'calendar month', u'rain date', u'mean solar day', u'civil day', u'calendar year', u'calendar day', u'month', u'future date', u'date', u'epoch', u'24-hour interval', u'civil year', u'sell-by date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'date of reference', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'30th', u'29th', u'september', u'december', u'evocation', u'1994', u'answerbag', u'28th', u'november', u'11th', u'july', u'24', u'announcement', u'26', u'27', u'20', u'21', u'22', u'23', u'deactivate', u'27th', u'28', u'14th', u'1', u'sunday', u'23rd', u'8', u'15th', u'march', u'august', u'monday', u'6', u'26th', u'17', u'24th', u'14', u'11', u'on', u'13', u'15', u'22nd', u'effective', u'16', u'19', u'12th', u'31', u'30', u'april', u'dated', u'18'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (49): set([u'attest', u'ad', u'1200', u'thirteenth', u'back', u'13th', u'datable', u'ostraca', u'fourteenth', u'7th', u'11th', u'6th', u'5th', u'1200s', u'least', u'14th', u'1500', u'onwards', u'dynastic', u'probably', u'dating', u'dateable', u'twelfth', u'15th', u'era', u'neolithic', u'1400s', u'9th', u'bc', u'earlier', u'fifteenth', u'period', u'postclassic', u'documents', u'earliest', u'pottery', u'dates', u'ramesside', u'possibly', u'12th', u'preclassic', u'1100', u'pictish', u'dated', u'1300s', u'bce', u'10th', u'16th', u'8th'])
intersection (0): set([])
DATE
golden (8): set([u'blind date', u'comrade', u'associate', u'familiar', u'fellow', u'escort', u'date', u'companion'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'blind date', u'appointment', u'double date', u'engagement', u'tryst', u'rendezvous', u'date', u'meeting', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'30th', u'29th', u'september', u'december', u'evocation', u'1994', u'answerbag', u'28th', u'november', u'11th', u'july', u'24', u'announcement', u'26', u'27', u'20', u'21', u'22', u'23', u'deactivate', u'27th', u'28', u'14th', u'1', u'sunday', u'23rd', u'8', u'15th', u'march', u'august', u'monday', u'6', u'26th', u'17', u'24th', u'14', u'11', u'on', u'13', u'15', u'22nd', u'effective', u'16', u'19', u'12th', u'31', u'30', u'april', u'dated', u'18'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (8): set([u'blind date', u'comrade', u'associate', u'familiar', u'fellow', u'escort', u'date', u'companion'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (8): set([u'blind date', u'comrade', u'associate', u'familiar', u'fellow', u'escort', u'date', u'companion'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (21): set([u'blind date', u'mean solar day', u'natal day', u'day of the month', u'maturity', u'double date', u'engagement', u'tryst', u'date', u'maturity date', u'birthday', u'24-hour interval', u'rendezvous', u'due date', u'solar day', u'twenty-four hours', u'appointment', u'twenty-four hour period', u'meeting', u'day', u'get together'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'someday', u'presleyas', u'paulini', u'hearasay', u'damizza', u'tasty', u'sacario', u'persue', u'tkautz', u'promote', u'midler', u'keni', u'yankovic', u'rerecord', u'latrelle', u'emias', u'keisha', u'rewind', u'ever', u'brokop', u'dreamlover', u'iraj', u'stateside', u'frente', u'evie', u'multiplatinum', u'madcon', u'kelis', u'dirrty', u'fgth', u'callea', u'tyketto', u'vinyl', u'dalbello', u'thrillington', u'kreesha', u'sinitta', u'smash', u'fanmail', u'superstar', u'streisand', u'duo', u'daemion', u'sleepyhead', u'daybreaker', u'addicted', u'contribution', u'pizon', u'woodface', u'jaheim'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (49): set([u'attest', u'ad', u'1200', u'thirteenth', u'back', u'13th', u'datable', u'ostraca', u'fourteenth', u'7th', u'11th', u'6th', u'5th', u'1200s', u'least', u'14th', u'1500', u'onwards', u'dynastic', u'probably', u'dating', u'dateable', u'twelfth', u'15th', u'era', u'neolithic', u'1400s', u'9th', u'bc', u'earlier', u'fifteenth', u'period', u'postclassic', u'documents', u'earliest', u'pottery', u'dates', u'ramesside', u'possibly', u'12th', u'preclassic', u'1100', u'pictish', u'dated', u'1300s', u'bce', u'10th', u'16th', u'8th'])
intersection (0): set([])
DATE
golden (10): set([u'rain date', u'mean solar day', u'future date', u'twenty-four hours', u'24-hour interval', u'sell-by date', u'date', u'solar day', u'twenty-four hour period', u'day'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (9): set([u'calendar month', u'civil day', u'calendar year', u'calendar day', u'month', u'epoch', u'date', u'date of reference', u'civil year'])
predicted (50): set([u'request', u'grandfathering', u'preliminary', u'updated', u'deadline', u'ppx', u'mailpiece', u'calculate', u'prior', u'data', u'waiting', u'duplicate', u'timeframe', u'proposal', u'document', u'issue', u'verification', u'notice', u'confirmation', u'return', u'definitive', u'ipledge', u'quote', u'listing', u'benchmark', u'expiry', u'finalisation', u'tentative', u'rfps', u'report', u'approval', u'exact', u'customer', u'verify', u'dates', u'transaction', u'tranching', u'documentation', u'proposals', u'cancellation', u'deliverable', u'record', u'expiration', u'submitting', u'time', u'advance', u'proof', u'provisional', u'milestones', u'justify'])
intersection (0): set([])
DATE
golden (13): set([u'mean solar day', u'natal day', u'day of the month', u'maturity', u'maturity date', u'birthday', u'24-hour interval', u'due date', u'date', u'twenty-four hours', u'solar day', u'twenty-four hour period', u'day'])
predicted (49): set([u'attest', u'ad', u'1200', u'thirteenth', u'back', u'13th', u'datable', u'ostraca', u'fourteenth', u'7th', u'11th', u'6th', u'5th', u'1200s', u'least', u'14th', u'1500', u'onwards', u'dynastic', u'probably', u'dating', u'dateable', u'twelfth', u'15th', u'era', u'neolithic', u'1400s', u'9th', u'bc', u'earlier', u'fifteenth', u'period', u'postclassic', u'documents', u'earliest', u'pottery', u'dates', u'ramesside', u'possibly', u'12th', u'preclassic', u'1100', u'pictish', u'dated', u'1300s', u'bce', u'10th', u'16th', u'8th'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (22): set([u'force out', u'give notice', u'retire', u'terminate', u'sack', u'lay off', u'give the sack', u'send away', u'pension off', u'squeeze out', u'send packing', u'fire', u'dismiss', u'displace', u'clean out', u'usher out', u'say farewell', u'furlough', u'drop', u'remove', u'give the axe', u'can'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (15): set([u'give the sack', u'send packing', u'fire', u'send away', u'give notice', u'drop', u'terminate', u'displace', u'sack', u'force out', u'give the axe', u'can', u'usher out', u'dismiss', u'say farewell'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (31): set([u'force out', u'give notice', u'terminate', u'sack', u'turn a blind eye', u'pass off', u'brush off', u'give the sack', u'disoblige', u'send away', u'discredit', u'brush aside', u'reject', u'cold-shoulder', u'dismiss', u'slight', u'fire', u'send packing', u'scoff', u'displace', u'flout', u'discount', u'shrug off', u'laugh away', u'drop', u'push aside', u'ignore', u'laugh off', u'give the axe', u'can', u'disregard'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (13): set([u'give the sack', u'send packing', u'fire', u'send away', u'give notice', u'drop', u'terminate', u'displace', u'sack', u'force out', u'give the axe', u'can', u'dismiss'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (33): set([u'force out', u'give notice', u'terminate', u'sack', u'turn a blind eye', u'pass off', u'brush off', u'give the sack', u'disoblige', u'send away', u'discredit', u'brush aside', u'reject', u'cold-shoulder', u'dismiss', u'slight', u'fire', u'send packing', u'scoff', u'displace', u'flout', u'discount', u'usher out', u'shrug off', u'laugh away', u'say farewell', u'drop', u'push aside', u'ignore', u'laugh off', u'give the axe', u'can', u'disregard'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (2): set([u'dismiss', u'throw out'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (2): set([u'dismiss', u'throw out'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (2): set([u'dismiss', u'throw out'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (2): set([u'dismiss', u'throw out'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (0): set([])
DISMISS
golden (2): set([u'dismiss', u'throw out'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (1): set([u'reject'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (31): set([u'force out', u'give notice', u'terminate', u'sack', u'turn a blind eye', u'pass off', u'brush off', u'give the sack', u'disoblige', u'send away', u'discredit', u'brush aside', u'reject', u'cold-shoulder', u'dismiss', u'slight', u'fire', u'send packing', u'scoff', u'displace', u'flout', u'discount', u'shrug off', u'laugh away', u'drop', u'push aside', u'ignore', u'laugh off', u'give the axe', u'can', u'disregard'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (2): set([u'dismiss', u'throw out'])
predicted (50): set([u'defer', u'suspend', u'revoke', u'consider', u'censure', u'impeach', u'indict', u'motions', u'enjoin', u'jury', u'demurrer', u'confirm', u'certify', u'compel', u'testify', u'quash', u'reject', u'override', u'schindlers', u'reinstate', u'prosecute', u'file', u'reconsider', u'grant', u'subpoenas', u'resign', u'refused', u'hear', u'accept', u'decide', u'judge', u'appealed', u'overturn', u'rescind', u'appoint', u'tribunal', u'refuse', u'annul', u'affirm', u'overrule', u'challenge', u'extradite', u'petitioner', u'remove', u'requesting', u'reappoint', u'subpoena', u'disqualify', u'approve', u'dissolve'])
intersection (0): set([])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (31): set([u'force out', u'give notice', u'terminate', u'sack', u'turn a blind eye', u'pass off', u'brush off', u'give the sack', u'disoblige', u'send away', u'discredit', u'brush aside', u'reject', u'cold-shoulder', u'dismiss', u'slight', u'fire', u'send packing', u'scoff', u'displace', u'flout', u'discount', u'shrug off', u'laugh away', u'drop', u'push aside', u'ignore', u'laugh off', u'give the axe', u'can', u'disregard'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
DISMISS
golden (19): set([u'pass off', u'cold-shoulder', u'disoblige', u'slight', u'dismiss', u'scoff', u'push aside', u'flout', u'ignore', u'discount', u'discredit', u'brush aside', u'reject', u'disregard', u'turn a blind eye', u'shrug off', u'laugh away', u'brush off', u'laugh off'])
predicted (49): set([u'respond', u'represent', u'compare', u'consider', u'endear', u'criticise', u'relate', u'describe', u'confuse', u'identify', u'deride', u'condemn', u'believe', u'calculate', u'refute', u'suggest', u'explain', u'overlook', u'liken', u'disprove', u'recommend', u'cite', u'classify', u'draw', u'regard', u'ascribe', u'perceive', u'denounce', u'react', u'discount', u'understand', u'belittle', u'baconians', u'referring', u'attribute', u'deny', u'criticize', u'distasteful', u'recall', u'anticipate', u'confirm', u'appreciate', u'ignore', u'assume', u'contrary', u'absurd', u'contradict', u'offend', u'objected'])
intersection (2): set([u'ignore', u'discount'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'basils', u'conures', u'uncoloured', u'cockers', u'contemporary', u'parasols', u'numberplates', u'colors', u'satinwood', u'splotch', u'dominant', u'pinto', u'distinguishable', u'often', u'colours', u'prolific', u'distinctive', u'generally', u'camisoles', u'reminiscent', u'coloration', u'bonnets', u'resembling', u'squarer', u'roans', u'styles', u'ubiquitous', u'striping', u'burl', u'iconic', u'buntings', u'notably', u'oilskin', u'plainer', u'peculiar', u'steamer', u'look', u'pinstriping', u'like', u'lighter', u'tetra', u'appearance', u'rounder', u'ostrich', u'moquette', u'common', u'bodied', u'normally', u'similar', u'typical'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'basils', u'conures', u'uncoloured', u'cockers', u'contemporary', u'parasols', u'numberplates', u'colors', u'satinwood', u'splotch', u'dominant', u'pinto', u'distinguishable', u'often', u'colours', u'prolific', u'distinctive', u'generally', u'camisoles', u'reminiscent', u'coloration', u'bonnets', u'resembling', u'squarer', u'roans', u'styles', u'ubiquitous', u'striping', u'burl', u'iconic', u'buntings', u'notably', u'oilskin', u'plainer', u'peculiar', u'steamer', u'look', u'pinstriping', u'like', u'lighter', u'tetra', u'appearance', u'rounder', u'ostrich', u'moquette', u'common', u'bodied', u'normally', u'similar', u'typical'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'associated', u'developed', u'garrulous', u'turbulent', u'perryas', u'maintained', u'enlivened', u'uncomfortable', u'halleck', u'occupied', u'stuffy', u'influenced', u'flirted', u'fraught', u'obsession', u'fascinated', u'smitten', u'credited', u'exercising', u'inman', u'clashes', u'dissatisfied', u'tempestuous', u'employed', u'irascible', u'filled', u'preoccupation', u'spars', u'obsessed', u'intimate', u'fascination', u'unfamiliar', u'juxtaposed', u'credits', u'jovial', u'uneventful', u'corresponded', u'lifelong', u'ripened', u'acquainted', u'preoccupied', u'brusque', u'enamored', u'furnishing', u'intrigued', u'disillusioned', u'cultivated', u'friendship', u'concerned', u'enamoured'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'intimate'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'associated', u'developed', u'garrulous', u'turbulent', u'perryas', u'maintained', u'enlivened', u'uncomfortable', u'halleck', u'occupied', u'stuffy', u'influenced', u'flirted', u'fraught', u'obsession', u'fascinated', u'smitten', u'credited', u'exercising', u'inman', u'clashes', u'dissatisfied', u'tempestuous', u'employed', u'irascible', u'filled', u'preoccupation', u'spars', u'obsessed', u'intimate', u'fascination', u'unfamiliar', u'juxtaposed', u'credits', u'jovial', u'uneventful', u'corresponded', u'lifelong', u'ripened', u'acquainted', u'preoccupied', u'brusque', u'enamored', u'furnishing', u'intrigued', u'disillusioned', u'cultivated', u'friendship', u'concerned', u'enamoured'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'associated', u'developed', u'garrulous', u'turbulent', u'perryas', u'maintained', u'enlivened', u'uncomfortable', u'halleck', u'occupied', u'stuffy', u'influenced', u'flirted', u'fraught', u'obsession', u'fascinated', u'smitten', u'credited', u'exercising', u'inman', u'clashes', u'dissatisfied', u'tempestuous', u'employed', u'irascible', u'filled', u'preoccupation', u'spars', u'obsessed', u'intimate', u'fascination', u'unfamiliar', u'juxtaposed', u'credits', u'jovial', u'uneventful', u'corresponded', u'lifelong', u'ripened', u'acquainted', u'preoccupied', u'brusque', u'enamored', u'furnishing', u'intrigued', u'disillusioned', u'cultivated', u'friendship', u'concerned', u'enamoured'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'intimate'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'associated', u'developed', u'garrulous', u'turbulent', u'perryas', u'maintained', u'enlivened', u'uncomfortable', u'halleck', u'occupied', u'stuffy', u'influenced', u'flirted', u'fraught', u'obsession', u'fascinated', u'smitten', u'credited', u'exercising', u'inman', u'clashes', u'dissatisfied', u'tempestuous', u'employed', u'irascible', u'filled', u'preoccupation', u'spars', u'obsessed', u'intimate', u'fascination', u'unfamiliar', u'juxtaposed', u'credits', u'jovial', u'uneventful', u'corresponded', u'lifelong', u'ripened', u'acquainted', u'preoccupied', u'brusque', u'enamored', u'furnishing', u'intrigued', u'disillusioned', u'cultivated', u'friendship', u'concerned', u'enamoured'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'associated', u'developed', u'garrulous', u'turbulent', u'perryas', u'maintained', u'enlivened', u'uncomfortable', u'halleck', u'occupied', u'stuffy', u'influenced', u'flirted', u'fraught', u'obsession', u'fascinated', u'smitten', u'credited', u'exercising', u'inman', u'clashes', u'dissatisfied', u'tempestuous', u'employed', u'irascible', u'filled', u'preoccupation', u'spars', u'obsessed', u'intimate', u'fascination', u'unfamiliar', u'juxtaposed', u'credits', u'jovial', u'uneventful', u'corresponded', u'lifelong', u'ripened', u'acquainted', u'preoccupied', u'brusque', u'enamored', u'furnishing', u'intrigued', u'disillusioned', u'cultivated', u'friendship', u'concerned', u'enamoured'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'associated', u'developed', u'garrulous', u'turbulent', u'perryas', u'maintained', u'enlivened', u'uncomfortable', u'halleck', u'occupied', u'stuffy', u'influenced', u'flirted', u'fraught', u'obsession', u'fascinated', u'smitten', u'credited', u'exercising', u'inman', u'clashes', u'dissatisfied', u'tempestuous', u'employed', u'irascible', u'filled', u'preoccupation', u'spars', u'obsessed', u'intimate', u'fascination', u'unfamiliar', u'juxtaposed', u'credits', u'jovial', u'uneventful', u'corresponded', u'lifelong', u'ripened', u'acquainted', u'preoccupied', u'brusque', u'enamored', u'furnishing', u'intrigued', u'disillusioned', u'cultivated', u'friendship', u'concerned', u'enamoured'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'associated', u'developed', u'garrulous', u'turbulent', u'perryas', u'maintained', u'enlivened', u'uncomfortable', u'halleck', u'occupied', u'stuffy', u'influenced', u'flirted', u'fraught', u'obsession', u'fascinated', u'smitten', u'credited', u'exercising', u'inman', u'clashes', u'dissatisfied', u'tempestuous', u'employed', u'irascible', u'filled', u'preoccupation', u'spars', u'obsessed', u'intimate', u'fascination', u'unfamiliar', u'juxtaposed', u'credits', u'jovial', u'uneventful', u'corresponded', u'lifelong', u'ripened', u'acquainted', u'preoccupied', u'brusque', u'enamored', u'furnishing', u'intrigued', u'disillusioned', u'cultivated', u'friendship', u'concerned', u'enamoured'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sudokus', u'schemes', u'useful', u'closely', u'parallelize', u'simple', u'consistent', u'cf', u'implementations', u'instances', u'underlying', u'simplified', u'moreover', u'precisely', u'matching', u'methods', u'ransac', u'constrained', u'mappings', u'efficient', u'interesting', u'complex', u'pure', u'basic', u'simpler', u'metaclass', u'sxml', u'straightforward', u'perceptually', u'constructs', u'conceptually', u'iterators', u'reasoners', u'objects', u'complicated', u'metaclasses', u'defining', u'structures', u'computations', u'flowcharts', u'applicable', u'compatible', u'generic', u'preprocessing', u'terminology', u'restricted', u'abox', u'attributes', u'metaheuristics', u'usual'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (1): set([u'conversant'])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'compare', u'associated', u'conflated', u'folklorists', u'consistent', u'synonymous', u'confused', u'apt', u'understood', u'westerners', u'unacquainted', u'influenced', u'unintelligible', u'concur', u'infatuated', u'interacted', u'confounded', u'concerned', u'familiarity', u'indeed', u'comprehensible', u'learned', u'incomprehensible', u'equated', u'identical', u'commonplace', u'sympathize', u'unfamiliar', u'conversant', u'familiarized', u'connected', u'wedded', u'closely', u'intermingled', u'auxlangs', u'understandable', u'aligned', u'archaisms', u'comparison', u'acquainted', u'intertwined', u'mingled', u'identified', u'obviously', u'compatible', u'accustomed', u'common', u'understand', u'contrasted', u'agree'])
intersection (0): set([])
FAMILIAR
golden (1): set([u'familiar'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILIAR
golden (2): set([u'familiar', u'conversant'])
predicted (50): set([u'sometimes', u'tone', u'often', u'playful', u'haunting', u'creepy', u'subtle', u'recognizable', u'comically', u'comical', u'inspiring', u'comedic', u'slapstick', u'hauntingly', u'deadpan', u'earthy', u'cliche', u'rollicking', u'nostalgic', u'surreal', u'quirky', u'comedy', u'unsettling', u'cliched', u'contrasting', u'dialogue', u'similar', u'sophisticated', u'burlesque', u'poignant', u'dramatic', u'dreamy', u'somewhat', u'upbeat', u'menacing', u'cheery', u'jaunty', u'twist', u'seductive', u'slightly', u'melodrama', u'esque', u'campy', u'melodramatic', u'ish', u'lively', u'schmaltzy', u'typical', u'lighter', u'lighthearted'])
intersection (0): set([])
FAMILY
golden (14): set([u'family', u'menage', u'conjugal family', u'house', u'household', u'broken home', u'menage a trois', u'nuclear family', u'unit', u'foster family', u'foster home', u'home', u'social unit', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (4): set([u'fellowship', u'koinonia', u'association', u'family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (51): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'household', u'man and wife', u'dynasty', u'stemma', u'foster family', u'home', u'mates', u'folk', u'parentage', u'descent', u'kin', u'menage a trois', u'married couple', u'family unit', u'unit', u'social unit', u'match', u'phratry', u'line of descent', u'menage', u'conjugal family', u'couple', u'kindred', u'ancestry', u'homefolk', u'kinsfolk', u'blood line', u'line', u'pedigree', u'clan', u'kinship group', u'name', u'broken home', u'bloodline', u'gens', u'nuclear family', u'lineage', u'marriage', u'family line', u'foster home', u'kin group', u'stock', u'sept', u'extended family', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (50): set([u'625', u'071', u'667', u'37', u'household', u'094', u'333', u'893', u'cdp', u'250', u'031', u'036', u'size', u'833', u'for', u'46', u'47', u'875', u'313', u'938', u'income', u'917', u'813', u'was', u'500', u'063', u'750', u'583', u'958', u'083', u'563', u'males', u'98', u'000', u'125', u'township', u'167', u'042', u'97', u'964', u'39', u'38', u'average', u'188', u'median', u'929', u'417', u'688', u'438', u'375'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'family', u'menage', u'conjugal family', u'house', u'household', u'broken home', u'menage a trois', u'nuclear family', u'unit', u'foster family', u'foster home', u'home', u'social unit', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (10): set([u'organized crime', u'gangland', u'crime syndicate', u'family', u'cosa nostra', u'maffia', u'gangdom', u'syndicate', u'mob', u'mafia'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'stemma', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'line of descent', u'couple', u'kindred', u'ancestry', u'blood', u'kinsfolk', u'blood line', u'line', u'pedigree', u'lineage', u'kinship group', u'name', u'bloodline', u'gens', u'mates', u'marriage', u'family line', u'kin group', u'sept', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'talpidae', u'poaceae', u'viviparidae', u'malvaceae', u'euconulidae', u'bagridae', u'zonitidae', u'hydrobiidae', u'ariidae', u'spiders', u'ranellidae', u'emydidae', u'asteraceae', u'balitoridae', u'vetigastropoda', u'euphorbiaceae', u'cyprinodontidae', u'parathelphusidae', u'enidae', u'sorbeoconcha', u'sisoridae', u'loricariidae', u'testudinidae', u'iguanidae', u'belonging', u'orchidaceae', u'pupillidae', u'aplysiidae', u'cambaridae', u'arionidae', u'dasyatidae', u'orthalicidae', u'pimelodidae', u'poeciliidae', u'acrididae', u'subfamily', u'diaptomidae', u'dendrocolaptinae', u'volutidae', u'superfamily', u'trichomycteridae', u'turridae', u'aplocheilidae', u'gekkonidae', u'crustacean', u'colubridae', u'percichthyidae', u'notodontidae', u'genus'])
intersection (0): set([])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'stemma', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'line of descent', u'couple', u'kindred', u'ancestry', u'blood', u'kinsfolk', u'blood line', u'line', u'pedigree', u'lineage', u'kinship group', u'name', u'bloodline', u'gens', u'mates', u'marriage', u'family line', u'kin group', u'sept', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (50): set([u'625', u'071', u'667', u'37', u'household', u'094', u'333', u'893', u'cdp', u'250', u'031', u'036', u'size', u'833', u'for', u'46', u'47', u'875', u'313', u'938', u'income', u'917', u'813', u'was', u'500', u'063', u'750', u'583', u'958', u'083', u'563', u'males', u'98', u'000', u'125', u'township', u'167', u'042', u'97', u'964', u'39', u'38', u'average', u'188', u'median', u'929', u'417', u'688', u'438', u'375'])
intersection (1): set([u'household'])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'family', u'menage', u'conjugal family', u'house', u'household', u'broken home', u'menage a trois', u'nuclear family', u'unit', u'foster family', u'foster home', u'home', u'social unit', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'stemma', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'line of descent', u'couple', u'kindred', u'ancestry', u'blood', u'kinsfolk', u'blood line', u'line', u'pedigree', u'lineage', u'kinship group', u'name', u'bloodline', u'gens', u'mates', u'marriage', u'family line', u'kin group', u'sept', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'family', u'menage', u'conjugal family', u'house', u'household', u'broken home', u'menage a trois', u'nuclear family', u'unit', u'foster family', u'foster home', u'home', u'social unit', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (4): set([u'fellowship', u'koinonia', u'association', u'family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (26): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'dynasty', u'stemma', u'folk', u'parentage', u'pedigree', u'homefolk', u'phratry', u'stock', u'lineage', u'ancestry', u'blood', u'kinsfolk', u'line', u'descent', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'family line', u'sept'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (59): set([u'origin', u'kinfolk', u'family', u'people', u'house', u'blood', u'dynasty', u'stemma', u'endamoebidae', u'family panorpidae', u'dicot family', u'mammal family', u'form family', u'fungus family', u'folk', u'parentage', u'worm family', u'descent', u'coelenterate family', u'family line', u'moss family', u'family endamoebidae', u'arthropod family', u'line of descent', u'bird family', u'phratry', u'fern family', u'mollusk family', u'chordate family', u'stock', u'plant family', u'amphibian family', u'taxonomic category', u'magnoliopsid family', u'bittacidae', u'filoviridae', u'ancestry', u'homefolk', u'ctenophore family', u'kinsfolk', u'line', u'reptile family', u'monocot family', u'pedigree', u'lineage', u'blood line', u'name', u'bloodline', u'liliopsid family', u'taxon', u'gens', u'echinoderm family', u'bacteria family', u'panorpidae', u'family bittacidae', u'protoctist family', u'sept', u'taxonomic group', u'fish family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'family', u'menage', u'conjugal family', u'house', u'household', u'broken home', u'menage a trois', u'nuclear family', u'unit', u'foster family', u'foster home', u'home', u'social unit', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (27): set([u'tribe', u'family', u'menage a trois', u'house', u'household', u'man and wife', u'mates', u'foster family', u'home', u'unit', u'married couple', u'family unit', u'social unit', u'match', u'menage', u'conjugal family', u'couple', u'kindred', u'kin', u'clan', u'kinship group', u'broken home', u'nuclear family', u'marriage', u'foster home', u'kin group', u'extended family'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (1): set([u'household'])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (14): set([u'clan', u'tribe', u'kinship group', u'family', u'couple', u'kindred', u'married couple', u'family unit', u'mates', u'marriage', u'man and wife', u'kin group', u'match', u'kin'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FAMILY
golden (39): set([u'origin', u'tribe', u'kinfolk', u'family', u'people', u'house', u'man and wife', u'dynasty', u'mates', u'folk', u'parentage', u'descent', u'homefolk', u'married couple', u'family unit', u'phratry', u'clan', u'match', u'stock', u'lineage', u'marriage', u'couple', u'kindred', u'ancestry', u'kin', u'kinsfolk', u'kinship group', u'line', u'pedigree', u'line of descent', u'blood line', u'name', u'bloodline', u'gens', u'stemma', u'family line', u'kin group', u'sept', u'blood'])
predicted (49): set([u'uncleas', u'estate', u'housepainter', u'household', u'familial', u'widowed', u'grandmothers', u'kapaakea', u'relative', u'familyas', u'matriarch', u'scion', u'ancestors', u'inheritance', u'motheras', u'adopted', u'paternal', u'grandmother', u'relatives', u'parents', u'tenant', u'dysfunctional', u'aunt', u'aristocratic', u'impoverished', u'wetnurse', u'maternal', u'divorcing', u'farm', u'grandparents', u'granddaughter', u'olopana', u'upbringing', u'youngest', u'wealthy', u'branwell', u'kennedys', u'gentry', u'landless', u'inheriting', u'fatheras', u'ancestral', u'grandfather', u'pasion', u'landlord', u'mother', u'stepfather', u'property', u'widow'])
intersection (0): set([])
FIND
golden (17): set([u'find out', u'notice', u'detect', u'see', u'trace', u'conclude', u'feel', u'instantiate', u'discover', u'spy', u'reason', u'observe', u'reason out', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (2): set([u'feel', u'see'])
FIND
golden (28): set([u'spy', u'redetermine', u'rectify', u'sense', u'number', u'see', u'gauge', u'determine', u'enumerate', u'find', u'numerate', u'detect', u'sequence', u'translate', u'situate', u'catch out', u'locate', u'find out', u'notice', u'trace', u'sight', u'discover', u'observe', u'count', u'refract', u'admeasure', u'instantiate', u'ascertain'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (3): set([u'trace', u'determine', u'enumerate'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'acquire', u'get'])
FIND
golden (32): set([u'gestate', u'spy', u'conceptualise', u'redetermine', u'rectify', u'sense', u'number', u'see', u'gauge', u'determine', u'enumerate', u'find', u'numerate', u'detect', u'sequence', u'translate', u'admeasure', u'catch out', u'locate', u'find out', u'notice', u'trace', u'sight', u'discover', u'observe', u'count', u'refract', u'situate', u'conceive', u'instantiate', u'ascertain', u'conceptualize'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'locate'])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (2): set([u'acquire', u'get'])
FIND
golden (17): set([u'spy', u'notice', u'detect', u'sense', u'trace', u'find out', u'feel', u'observe', u'conclude', u'discover', u'see', u'instantiate', u'sight', u'reason out', u'reason', u'catch out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'feel'])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'feel'])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'happen', u'encounter'])
FIND
golden (15): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'observe', u'acquire', u'discover', u'see', u'instantiate', u'sight', u'sense', u'get', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'see'])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (2): set([u'determine', u'enumerate'])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'happen', u'encounter'])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'happen', u'encounter'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (2): set([u'acquire', u'get'])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'happen'])
FIND
golden (5): set([u'judge', u'pronounce', u'find', u'rule', u'label'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (3): set([u'acquire', u'find', u'get'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (0): set([])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'happen'])
FIND
golden (3): set([u'comprehend', u'find', u'perceive'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (28): set([u'spy', u'redetermine', u'sequence', u'enumerate', u'discover', u'see', u'gauge', u'sight', u'sense', u'find', u'numerate', u'detect', u'rectify', u'translate', u'situate', u'catch out', u'locate', u'find out', u'notice', u'trace', u'number', u'observe', u'determine', u'count', u'refract', u'admeasure', u'instantiate', u'ascertain'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (3): set([u'determine', u'trace', u'enumerate'])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'happen'])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (6): set([u'experience', u'see', u'catch', u'go through', u'find', u'witness'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (0): set([])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (1): set([u'trace'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (1): set([u'trace'])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (0): set([])
FIND
golden (3): set([u'comprehend', u'find', u'perceive'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (10): set([u'get hold', u'line up', u'get', u'bump', u'acquire', u'come up', u'chance', u'happen', u'find', u'encounter'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'happen'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'see'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (0): set([])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (0): set([])
FIND
golden (23): set([u'locate', u'feel', u'discover', u'happen upon', u'attain', u'rout up', u'come across', u'happen', u'find', u'chance upon', u'bump', u'strike', u'light upon', u'regain', u'get', u'acquire', u'chance', u'chance on', u'come upon', u'encounter', u'rout out', u'turn up', u'fall upon'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (2): set([u'feel', u'happen'])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (0): set([])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'happen', u'encounter'])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (1): set([u'locate'])
FIND
golden (3): set([u'comprehend', u'find', u'perceive'])
predicted (50): set([u'everyone', u'retrieve', u'eventually', u'sends', u'discover', u'surrenders', u'hercules', u'kill', u'escape', u'go', u'decides', u'strangle', u'kidnap', u'agrees', u'leave', u'hide', u'asks', u'seduce', u'threatens', u'returns', u'rushes', u'finally', u'instructs', u'goes', u'save', u'begs', u'sent', u'locate', u'then', u'return', u'rescue', u'get', u'convinces', u'stop', u'back', u'warn', u'decide', u'meet', u'ask', u'console', u'flee', u'iolaus', u'confront', u'persuades', u'leaving', u'try', u'investigate', u'convince', u'urges', u'steal'])
intersection (0): set([])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (1): set([u'trace'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (1): set([u'trace'])
FIND
golden (17): set([u'find out', u'notice', u'detect', u'see', u'trace', u'spy', u'bump', u'instantiate', u'discover', u'chance', u'observe', u'sight', u'sense', u'happen', u'catch out', u'find', u'encounter'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'happen', u'encounter'])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (1): set([u'locate'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (2): set([u'acquire', u'get'])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (0): set([])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (0): set([])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'happen', u'encounter'])
FIND
golden (28): set([u'spy', u'redetermine', u'rectify', u'sense', u'number', u'see', u'gauge', u'determine', u'enumerate', u'find', u'numerate', u'detect', u'sequence', u'translate', u'situate', u'catch out', u'locate', u'find out', u'notice', u'trace', u'sight', u'discover', u'observe', u'count', u'refract', u'admeasure', u'instantiate', u'ascertain'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (1): set([u'locate'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (0): set([])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'feel'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (0): set([])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'happen'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'acquire', u'get'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (0): set([])
FIND
golden (7): set([u'get', u'receive', u'obtain', u'incur', u'take', u'find', u'change'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'locate'])
FIND
golden (7): set([u'hit', u'make', u'reach', u'arrive at', u'attain', u'find', u'gain'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'make'])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'locate'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (1): set([u'trace'])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'see'])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (17): set([u'find out', u'notice', u'detect', u'see', u'trace', u'conclude', u'feel', u'instantiate', u'discover', u'spy', u'reason', u'observe', u'reason out', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (2): set([u'feel', u'see'])
FIND
golden (5): set([u'bump', u'chance', u'happen', u'encounter', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (2): set([u'happen', u'encounter'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'see'])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (46): set([u'maximize', u'hoping', u'give', u'devise', u'obtain', u'invent', u'bring', u'persuade', u'undertake', u'establish', u'secure', u'sell', u'anxious', u'develop', u'proceed', u'seek', u'make', u'send', u'attach', u'build', u'forge', u'relocate', u'locate', u'draw', u'enable', u'get', u'stop', u'acquire', u'reach', u'procure', u'induce', u'negotiate', u'leave', u'produce', u'introduce', u'assemble', u'arrange', u'earn', u'invest', u'gather', u'keep', u'resurrect', u'convince', u'entice', u'salvage', u'travel'])
intersection (0): set([])
FIND
golden (5): set([u'feel', u'reason', u'conclude', u'reason out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'feel'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'see'])
FIND
golden (22): set([u'gestate', u'conceptualise', u'redetermine', u'rectify', u'number', u'gauge', u'determine', u'enumerate', u'find', u'numerate', u'sequence', u'translate', u'admeasure', u'locate', u'find out', u'discover', u'count', u'refract', u'situate', u'conceive', u'ascertain', u'conceptualize'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (1): set([u'locate'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'see'])
FIND
golden (17): set([u'locate', u'find out', u'count', u'redetermine', u'refract', u'rectify', u'translate', u'sequence', u'number', u'situate', u'gauge', u'determine', u'enumerate', u'ascertain', u'admeasure', u'find', u'numerate'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (6): set([u'get hold', u'line up', u'get', u'acquire', u'come up', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (0): set([])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'feel', u'mind', u'anybody', u'telling', u'see', u'sure', u'expect', u'laugh', u'need', u'happen', u'yes', u'really', u'leave', u're', u'deserve', u'confess', u'belong', u'please', u'write', u'how', u'suppose', u'you', u'wonder', u'tell', u'ought', u'buy', u'somebody', u'donat', u'wish', u'understand', u'if', u'imagine', u'ask', u'believe', u'dare', u'remember', u'awhat', u'i', u'maybe', u'pretend', u'appreciate', u'say', u'owe', u'try', u'honestly', u'always', u'everything', u'aif', u'think', u'mean'])
intersection (1): set([u'see'])
FIND
golden (22): set([u'redetermine', u'sequence', u'number', u'come up', u'gauge', u'determine', u'enumerate', u'find', u'numerate', u'line up', u'rectify', u'translate', u'situate', u'locate', u'find out', u'get', u'acquire', u'count', u'refract', u'admeasure', u'get hold', u'ascertain'])
predicted (50): set([u'compare', u'consider', u'calculation', u'describe', u'numerically', u'obtain', u'approximation', u'say', u'generalize', u'determine', u'enumerate', u'apply', u'ransac', u'derive', u'calculate', u'verify', u'fix', u'approximate', u'construct', u'interpret', u'finding', u'optimal', u'discretization', u'iteratively', u'suffices', u'define', u'trace', u'evaluate', u'equivalent', u'numerical', u'interpolate', u'simplify', u'unsatisfiability', u'exact', u'imagine', u'applying', u'estimate', u'assigning', u'generate', u'specify', u'defining', u'parameterize', u'compute', u'algorithm', u'assume', u'recall', u'yield', u'solve', u'assign', u'iterate'])
intersection (2): set([u'determine', u'enumerate'])
FIND
golden (19): set([u'regain', u'locate', u'rout up', u'get', u'feel', u'chance upon', u'acquire', u'discover', u'rout out', u'happen upon', u'strike', u'fall upon', u'attain', u'chance on', u'come across', u'come upon', u'turn up', u'find', u'light upon'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (4): set([u'locate', u'feel', u'acquire', u'get'])
FIND
golden (13): set([u'find out', u'notice', u'detect', u'trace', u'spy', u'instantiate', u'discover', u'see', u'observe', u'sight', u'sense', u'catch out', u'find'])
predicted (50): set([u'enjoy', u'unwary', u'learn', u'mingle', u'consider', u'feel', u'recognize', u'prefer', u'obtain', u'outdoors', u'traveling', u'want', u'seem', u'tend', u'attract', u'happen', u'leave', u'seek', u'make', u'visit', u'wander', u'continue', u'take', u'easy', u'tell', u'adapt', u'locate', u'them', u'invite', u'get', u'acquire', u'stay', u'admire', u'hear', u'ask', u'hold', u'encounter', u'arrange', u'remember', u'wish', u'gather', u'appreciate', u'keep', u'try', u'collect', u'congregate', u'roam', u'become', u'think', u'expect'])
intersection (0): set([])
FORCE
golden (41): set([u'rank and file', u'force', u'military service', u'rank', u'military police', u'soldiery', u'line personnel', u'patrol', u'paramilitary organisation', u'staff', u'private security force', u'police', u'troops', u'service', u'personnel', u'organisation', u'war machine', u'organization', u'constabulary', u'armed service', u'military machine', u'men', u'work force', u'workforce', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'police force', u'hands', u'law', u'armed forces', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'armed services', u'guerilla force', u'security force', u'mp', u'military personnel', u'military'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (2): set([u'military', u'police'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (19): set([u'vigor', u'strength', u'force', u'riot', u'zip', u'energy', u'violence', u'vigour', u'brunt', u'intensity', u'forcefulness', u'aggression', u'impulse', u'road rage', u'intensiveness', u'momentum', u'hostility', u'domestic violence', u'public violence'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (45): set([u'force', u'israeli defense force', u'mujahedin', u'haganah', u'armour', u'influence', u'command', u'task force', u'echelon', u'naval unit', u'mujahadeen', u'reserves', u'republican guard', u'phalanx', u'unit', u'moloch', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'juggernaut', u'mujahadin', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'power', u'enemy', u'steamroller', u'military group', u'trip wire', u'mujahideen', u'headquarters', u'causal agent', u'causal agency', u'cause', u'guard', u'legion', u'army unit', u'militia', u'commando', u'idf', u'mujahidin', u'mujahadein'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (8): set([u'force', u'riot', u'hostility', u'violence', u'aggression', u'public violence', u'road rage', u'domestic violence'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (4): set([u'validness', u'force', u'effect', u'validity'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (12): set([u'vigor', u'strength', u'force', u'zip', u'energy', u'intensity', u'brunt', u'vigour', u'forcefulness', u'impulse', u'intensiveness', u'momentum'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (41): set([u'rank and file', u'force', u'military service', u'rank', u'military police', u'soldiery', u'line personnel', u'patrol', u'paramilitary organisation', u'staff', u'private security force', u'police', u'troops', u'service', u'personnel', u'organisation', u'war machine', u'organization', u'constabulary', u'armed service', u'military machine', u'men', u'work force', u'workforce', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'police force', u'hands', u'law', u'armed forces', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'armed services', u'guerilla force', u'security force', u'mp', u'military personnel', u'military'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (2): set([u'military', u'police'])
FORCE
golden (41): set([u'rank and file', u'force', u'military service', u'rank', u'military police', u'soldiery', u'line personnel', u'patrol', u'paramilitary organisation', u'staff', u'private security force', u'police', u'troops', u'service', u'personnel', u'organisation', u'war machine', u'organization', u'constabulary', u'armed service', u'military machine', u'men', u'work force', u'workforce', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'police force', u'hands', u'law', u'armed forces', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'armed services', u'guerilla force', u'security force', u'mp', u'military personnel', u'military'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (2): set([u'military', u'police'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (8): set([u'force', u'riot', u'hostility', u'violence', u'aggression', u'public violence', u'road rage', u'domestic violence'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (77): set([u'rank and file', u'force', u'israeli defense force', u'military service', u'haganah', u'armour', u'rank', u'echelon', u'naval unit', u'military police', u'soldiery', u'line personnel', u'republican guard', u'phalanx', u'patrol', u'guard', u'paramilitary organisation', u'constabulary', u'mujahadein', u'private security force', u'law', u'police', u'troops', u'service', u'armor', u'personnel', u'organisation', u'detail', u'air unit', u'mujahedin', u'spearhead', u'unit', u'war machine', u'task force', u'militia', u'social unit', u'staff', u'military unit', u'armed service', u'mujahedeen', u'contingent', u'military machine', u'armed services', u'military', u'men', u'work force', u'workforce', u'military group', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'trip wire', u'police force', u'hands', u'mujahadin', u'mujahideen', u'headquarters', u'armed forces', u'military force', u'enemy', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'mujahadeen', u'guerilla force', u'security force', u'legion', u'army unit', u'reserves', u'command', u'mp', u'military personnel', u'idf', u'organization', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (2): set([u'military', u'police'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (8): set([u'force', u'riot', u'hostility', u'violence', u'aggression', u'public violence', u'road rage', u'domestic violence'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (1): set([u'pressure'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (41): set([u'rank and file', u'force', u'military service', u'rank', u'military police', u'soldiery', u'line personnel', u'patrol', u'paramilitary organisation', u'staff', u'private security force', u'police', u'troops', u'service', u'personnel', u'organisation', u'war machine', u'organization', u'constabulary', u'armed service', u'military machine', u'men', u'work force', u'workforce', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'police force', u'hands', u'law', u'armed forces', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'armed services', u'guerilla force', u'security force', u'mp', u'military personnel', u'military'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (31): set([u'aerodynamic force', u'force', u'life force', u'coriolis force', u'torque', u'lorentz force', u'physical phenomenon', u'centripetal force', u'torsion', u'chemical attraction', u'impetus', u'attractive force', u'magnetomotive force', u'propulsion', u'attraction', u'affinity', u'centrifugal force', u'repulsive force', u'reaction', u'drift', u'vitality', u'impulsion', u'moment', u'vital force', u'thrust', u'pull', u'stress', u'cohesion', u'elan vital', u'repulsion', u'push'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (1): set([u'stress'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (1): set([u'contingent'])
FORCE
golden (77): set([u'rank and file', u'force', u'israeli defense force', u'military service', u'haganah', u'armour', u'rank', u'echelon', u'naval unit', u'military police', u'soldiery', u'line personnel', u'republican guard', u'phalanx', u'patrol', u'guard', u'paramilitary organisation', u'constabulary', u'mujahadein', u'private security force', u'law', u'police', u'troops', u'service', u'armor', u'personnel', u'organisation', u'detail', u'air unit', u'mujahedin', u'spearhead', u'unit', u'war machine', u'task force', u'militia', u'social unit', u'staff', u'military unit', u'armed service', u'mujahedeen', u'contingent', u'military machine', u'armed services', u'military', u'men', u'work force', u'workforce', u'military group', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'trip wire', u'police force', u'hands', u'mujahadin', u'mujahideen', u'headquarters', u'armed forces', u'military force', u'enemy', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'mujahadeen', u'guerilla force', u'security force', u'legion', u'army unit', u'reserves', u'command', u'mp', u'military personnel', u'idf', u'organization', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (2): set([u'troops', u'contingent'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (41): set([u'rank and file', u'force', u'military service', u'rank', u'military police', u'soldiery', u'line personnel', u'patrol', u'paramilitary organisation', u'staff', u'private security force', u'police', u'troops', u'service', u'personnel', u'organisation', u'war machine', u'organization', u'constabulary', u'armed service', u'military machine', u'men', u'work force', u'workforce', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'police force', u'hands', u'law', u'armed forces', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'armed services', u'guerilla force', u'security force', u'mp', u'military personnel', u'military'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (1): set([u'pressure'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (1): set([u'contingent'])
FORCE
golden (14): set([u'wheel', u'moloch', u'force', u'power', u'causal agency', u'cause', u'steamroller', u'influence', u'pressure', u'juggernaut', u'lifeblood', u'heartbeat', u'causal agent', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (1): set([u'contingent'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (1): set([u'contingent'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (1): set([u'pressure'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (0): set([])
FORCE
golden (2): set([u'social group', u'force'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (50): set([u'force', u'israeli defense force', u'mujahedin', u'haganah', u'armour', u'influence', u'command', u'echelon', u'naval unit', u'mujahadeen', u'reserves', u'republican guard', u'lifeblood', u'task force', u'unit', u'moloch', u'military force', u'armor', u'detail', u'air unit', u'commando', u'spearhead', u'juggernaut', u'mujahadin', u'social unit', u'military unit', u'duress', u'wheel', u'contingent', u'power', u'enemy', u'phalanx', u'steamroller', u'military group', u'pressure', u'trip wire', u'mujahideen', u'headquarters', u'causal agent', u'causal agency', u'cause', u'guard', u'legion', u'army unit', u'militia', u'mujahedeen', u'idf', u'heartbeat', u'mujahidin', u'mujahadein'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (1): set([u'contingent'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (41): set([u'rank and file', u'force', u'military service', u'rank', u'military police', u'soldiery', u'line personnel', u'patrol', u'paramilitary organisation', u'staff', u'private security force', u'police', u'troops', u'service', u'personnel', u'organisation', u'war machine', u'organization', u'constabulary', u'armed service', u'military machine', u'men', u'work force', u'workforce', u'guerrilla force', u'paramilitary organization', u'paramilitary force', u'police force', u'hands', u'law', u'armed forces', u'paramilitary', u'paramilitary unit', u'manpower', u'management personnel', u'armed services', u'guerilla force', u'security force', u'mp', u'military personnel', u'military'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (2): set([u'military', u'police'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (8): set([u'force', u'riot', u'hostility', u'violence', u'aggression', u'public violence', u'road rage', u'domestic violence'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'logistics', u'corps', u'mobility', u'sac', u'usaaf', u'581st', u'strategic', u'forceas', u'afb', u'combat', u'wheelus', u'bomber', u'aaftc', u'unit', u'stationed', u'army', u'349th', u'offutt', u'ramstein', u'afsoc', u'931st', u'452d', u'refueling', u'442d', u'afres', u'552d', u'commandas', u'materiel', u'component', u'usaf', u'aflc', u'base', u'expeditionary', u'479th', u'aviation', u'commander', u'marine', u'usafe', u'fighter', u'naval', u'headquarters', u'raaf', u'air', u'pacaf', u'macdill', u'command', u'tactical', u'445th', u'squadron', u'wing'])
intersection (3): set([u'command', u'headquarters', u'unit'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (1): set([u'contingent'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'beachhead', u'nationalist', u'defenders', u'successfully', u'outflanking', u'reinforcements', u'defences', u'beachheads', u'warships', u'cavalry', u'troops', u'army', u'rout', u'attacked', u'repulsing', u'attack', u'detachments', u'forces', u'surprise', u'massed', u'columns', u'flanking', u'artillery', u'assaults', u'contingent', u'defenses', u'assault', u'detachment', u'rearguard', u'tanks', u'flotilla', u'rear', u'raiding', u'advance', u'garrisons', u'unopposed', u'column', u'positions', u'counter', u'counterattacks', u'reinforcement', u'counterattack', u'attacks', u'counterattacked', u'retreating', u'fleet', u'marines', u'garrison', u'attacking', u'reinforced'])
intersection (1): set([u'contingent'])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (1): set([u'legion'])
FORCE
golden (2): set([u'social group', u'force'])
predicted (50): set([u'assault', u'vattic', u'subdue', u'apprehend', u'molov', u'incapacitate', u'resistance', u'yubel', u'megatron', u'megahorn', u'skugs', u'terrify', u'capture', u'manipulate', u'legion', u'duplicate', u'bludgeon', u'attack', u'eliminate', u'forces', u'brainwash', u'destroy', u'allowing', u'rebel', u'golobulus', u'krona', u'mutiny', u'eternion', u'teleport', u'absorb', u'empower', u'unleash', u'evil', u'mission', u'empera', u'rogue', u'plan', u'sharrakor', u'unicron', u'retreat', u'warlic', u'zuggernaut', u'weapon', u'obliterate', u'straxus', u'summon', u'disable', u'threat', u'defeat', u'vanquish'])
intersection (0): set([])
FORCE
golden (37): set([u'force', u'israeli defense force', u'militia', u'mujahedin', u'haganah', u'armour', u'echelon', u'naval unit', u'guard', u'reserves', u'republican guard', u'phalanx', u'task force', u'mujahadeen', u'unit', u'military force', u'armor', u'detail', u'air unit', u'spearhead', u'command', u'social unit', u'military unit', u'mujahedeen', u'contingent', u'military group', u'trip wire', u'mujahideen', u'enemy', u'headquarters', u'legion', u'army unit', u'mujahadin', u'mujahadein', u'idf', u'mujahidin', u'commando'])
predicted (49): set([u'operations', u'unified', u'tasks', u'cfnis', u'corps', u'sandf', u'deployment', u'sad', u'recruitment', u'polices', u'pfpa', u'doctrine', u'infiltration', u'counterespionage', u'activating', u'mobilisation', u'defence', u'police', u'ndstic', u'clandestine', u'assistance', u'policeas', u'surveillance', u'adf', u'kpc', u'brigade', u'multinational', u'counternarcotics', u'policing', u'isaf', u'agencies', u'antiterrorism', u'eupm', u'antiterrorist', u'counterinsurgency', u'structure', u'task', u'kpraf', u'gendarmeries', u'counter', u'yamam', u'bsap', u'cadre', u'un', u'gendarmerie', u'military', u'security', u'scdf', u'mndf'])
intersection (0): set([])
FORCE
golden (7): set([u'wheel', u'force', u'influence', u'pressure', u'lifeblood', u'heartbeat', u'duress'])
predicted (50): set([u'bending', u'magnetic', u'oscillation', u'energy', u'displacement', u'friction', u'deflection', u'stator', u'static', u'buoyancy', u'damped', u'kinetic', u'acceleration', u'rotor', u'gradient', u'lateral', u'instantaneous', u'centripetal', u'charge', u'potential', u'damping', u'net', u'exerted', u'shear', u'electric', u'component', u'oscillating', u'fluid', u'wave', u'pressure', u'increases', u'inductance', u'dissipation', u'aerodynamic', u'rotation', u'inertia', u'drag', u'stress', u'rotational', u'charges', u'torques', u'centrifugal', u'accelerating', u'hydrostatic', u'flux', u'vortex', u'projectile', u'velocity', u'spins', u'frictional'])
intersection (1): set([u'pressure'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (2): set([u'aid', u'assist'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (3): set([u'serve', u'facilitate', u'help'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (1): set([u'facilitate'])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (2): set([u'better', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (2): set([u'aid', u'assist'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (3): set([u'serve', u'facilitate', u'help'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (1): set([u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (6): set([u'help', u'work', u'serve', u'avail', u'exploit', u'facilitate'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (1): set([u'facilitate'])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (2): set([u'better', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (1): set([u'aid'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'improve'])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (5): set([u'better', u'support', u'assist', u'facilitate', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (17): set([u'advance', u'cure', u'help', u'do good', u'amend', u'heal', u'benefit', u'better', u'encourage', u'bring around', u'ameliorate', u'further', u'aid', u'promote', u'boost', u'meliorate', u'improve'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (1): set([u'aid'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (2): set([u'better', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (2): set([u'aid', u'assist'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (2): set([u'aid', u'assist'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (2): set([u'aid', u'assist'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (3): set([u'serve', u'facilitate', u'help'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (25): set([u'work', u'help', u'help out', u'subserve', u'exploit', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (33): set([u'help', u'help out', u'subserve', u'cure', u'ameliorate', u'attend to', u'wait on', u'avail', u'succour', u'support', u'better', u'bring around', u'back up', u'meliorate', u'attend', u'heal', u'assist', u'serve', u'aid', u'expedite', u'improve', u'benefact', u'amend', u'bootstrap', u'benefit', u'succor', u'alleviate', u'give care', u'do good', u'hasten', u'facilitate', u'ease', u'care'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (4): set([u'forbear', u'help oneself', u'help', u'refrain'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (4): set([u'forbear', u'help oneself', u'help', u'refrain'])
predicted (49): set([u'trio', u'deal', u'encouragement', u'enlists', u'helped', u'myrdak', u'janvier', u'reunites', u'struggles', u'teaming', u'recruits', u'contacts', u'fiancee', u'tiu', u'assistance', u'entrusts', u'tow', u'reuniting', u'clashes', u'intention', u'longtime', u'enlisted', u'annihilatrix', u'supplies', u'friend', u'conspires', u'ends', u'clutches', u'forces', u'dalliance', u'helps', u'helping', u'rest', u'dunson', u'pair', u'ties', u'along', u'fellow', u'former', u'partner', u'exception', u'cordell', u'enlisting', u'tandy', u'conflict', u'aid', u'tyrannical', u'support', u'likes'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (3): set([u'serve', u'facilitate', u'help'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (2): set([u'better', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (2): set([u'aid', u'assist'])
HELP
golden (3): set([u'serve', u'facilitate', u'help'])
predicted (50): set([u'promises', u'decides', u'refuses', u'back', u'bring', u'persuade', u'kill', u'go', u'begged', u'agrees', u'try', u'asks', u'fix', u'comfort', u'send', u'finally', u'instructs', u'take', u'begs', u'tell', u'betray', u'advises', u'them', u'tried', u'get', u'punish', u'convinces', u'stop', u'forgive', u'but', u'stay', u'warn', u'tries', u'let', u'decide', u'ask', u'come', u'him', u'shoot', u'desperately', u'refuse', u'persuades', u'anyway', u'keep', u'leave', u'convince', u'urges', u'steal', u'agree', u'talk'])
intersection (0): set([])
HELP
golden (3): set([u'serve', u'facilitate', u'help'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (1): set([u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'forced', u'managed', u'secure', u'subdue', u'expel', u'disarm', u'resist', u'decided', u'reinforcements', u'promised', u'escape', u'seek', u'leave', u'wanted', u'troops', u'ostensibly', u'defend', u'permission', u'send', u'fight', u'suppress', u'wanting', u'forcing', u'invade', u'wished', u'tried', u'seeking', u'attempted', u'assist', u'negotiate', u'evacuate', u'refused', u'quell', u'conquer', u'aid', u'pacify', u'appealed', u'surrender', u'flee', u'recapture', u'join', u'retake', u'confront', u'try', u'renew', u'repel', u'withdraw', u'meet', u'efforts', u'liberate'])
intersection (2): set([u'aid', u'assist'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (12): set([u'help', u'amend', u'heal', u'better', u'benefit', u'bring around', u'aid', u'ameliorate', u'do good', u'cure', u'meliorate', u'improve'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (2): set([u'better', u'improve'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'respond', u'prevent', u'reduce', u'need', u'examine', u'identify', u'fail', u'further', u'counteract', u'seek', u'manipulate', u'detect', u'trigger', u'avoid', u'isolate', u'enlarge', u'adhere', u'spread', u'replicate', u'eliminate', u'cause', u'alter', u'overcome', u'locate', u'enable', u'ability', u'suppress', u'expose', u'compress', u'visualize', u'unwanted', u'simulate', u'aid', u'promote', u'optimize', u'expand', u'improve', u'resolve', u'helpful', u'minimize', u'disrupt', u'keep', u'aim', u'initiate', u'without', u'permit', u'inability', u'enhance', u'facilitate', u'make'])
intersection (2): set([u'aid', u'facilitate'])
HELP
golden (23): set([u'help', u'help out', u'subserve', u'attend to', u'wait on', u'succour', u'support', u'avail', u'back up', u'attend', u'assist', u'serve', u'expedite', u'care', u'benefact', u'bootstrap', u'succor', u'alleviate', u'give care', u'aid', u'hasten', u'facilitate', u'ease'])
predicted (50): set([u'inspire', u'strengthen', u'efforts', u'contribute', u'bring', u'need', u'our', u'ways', u'access', u'educate', u'develop', u'raise', u'prepare', u'provide', u'support', u'motivate', u'participants', u'better', u'encourage', u'foster', u'sustain', u'helps', u'improve', u'seeks', u'strives', u'underprivileged', u'enable', u'seeking', u'funds', u'empower', u'assist', u'deliver', u'helping', u'designed', u'demonstrate', u'communities', u'promote', u'optimize', u'strive', u'nonprofits', u'disadvantaged', u'engage', u'entrepreneurs', u'aims', u'inform', u'awareness', u'enhance', u'implement', u'enables', u'facilitate'])
intersection (3): set([u'support', u'assist', u'facilitate'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (50): set([u'system', u'scanning', u'filtering', u'portable', u'debugging', u'openexr', u'tiff', u'jpeg', u'bitmap', u'rendering', u'video', u'capabilities', u'file', u'images', u'tools', u'binary', u'formats', u'compression', u'exif', u'multimedia', u'storage', u'editors', u'dsp', u'content', u'application', u'digital', u'usage', u'input', u'dcraw', u'format', u'tool', u'processing', u'mapping', u'optimized', u'streaming', u'graphics', u'technologies', u'editing', u'data', u'lossless', u'storing', u'raster', u'embedded', u'package', u'capability', u'vector', u'compositing', u'display', u'authoring', u'displays'])
intersection (0): set([])
IMAGE
golden (8): set([u'imago', u'paradigm', u'image', u'example', u'concentrate', u'model', u'prototype', u'epitome'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (29): set([u'iconography', u'impression', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'effect', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (34): set([u'iconography', u'imago', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'computer graphic', u'sonogram', u'panorama', u'ikon', u'electronic image', u'prototype', u'picture', u'semblance', u'cat scan', u'foil', u'concentrate', u'epitome', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation', u'model', u'paradigm', u'example'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (6): set([u'visual aspect', u'persona', u'impression', u'image', u'appearance', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (1): set([u'persona'])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (39): set([u'iconography', u'impression', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'imagination image', u'visualisation', u'chiaroscuro', u'cyclorama', u'visualization', u'sonogram', u'panorama', u'mental representation', u'ikon', u'electronic image', u'computer graphic', u'thought-image', u'mental picture', u'picture', u'semblance', u'memory image', u'cat scan', u'mental image', u'foil', u'internal representation', u'visual image', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation', u'auditory image'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (4): set([u'visual aspect', u'image', u'persona', u'appearance'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (1): set([u'persona'])
IMAGE
golden (29): set([u'iconography', u'impression', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'effect', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (6): set([u'impression', u'persona', u'visual aspect', u'image', u'appearance', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (1): set([u'persona'])
IMAGE
golden (8): set([u'imago', u'paradigm', u'image', u'example', u'concentrate', u'model', u'prototype', u'epitome'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (39): set([u'iconography', u'impression', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'imagination image', u'visualisation', u'chiaroscuro', u'cyclorama', u'visualization', u'sonogram', u'panorama', u'mental representation', u'ikon', u'electronic image', u'computer graphic', u'thought-image', u'mental picture', u'picture', u'semblance', u'memory image', u'cat scan', u'mental image', u'foil', u'internal representation', u'visual image', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation', u'auditory image'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (40): set([u'iconography', u'wax figure', u'scan', u'effigy', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'scarer', u'simulacrum', u'sonogram', u'god', u'graven image', u'ikon', u'electronic image', u'collage', u'computer graphic', u'scarecrow', u'idol', u'cyclorama', u'semblance', u'waxwork', u'cat scan', u'foil', u'strawman', u'diorama', u'icon', u'picture', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'straw man', u'inset', u'transparency', u'panorama', u'representation', u'guy', u'bird-scarer'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (5): set([u'iconography', u'effigy', u'picture', u'idol', u'icon'])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (4): set([u'image', u'set', u'range', u'range of a function'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (39): set([u'iconography', u'impression', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'imagination image', u'visualisation', u'chiaroscuro', u'cyclorama', u'visualization', u'sonogram', u'panorama', u'mental representation', u'ikon', u'electronic image', u'computer graphic', u'thought-image', u'mental picture', u'picture', u'semblance', u'memory image', u'cat scan', u'mental image', u'foil', u'internal representation', u'visual image', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation', u'auditory image'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'system', u'scanning', u'filtering', u'portable', u'debugging', u'openexr', u'tiff', u'jpeg', u'bitmap', u'rendering', u'video', u'capabilities', u'file', u'images', u'tools', u'binary', u'formats', u'compression', u'exif', u'multimedia', u'storage', u'editors', u'dsp', u'content', u'application', u'digital', u'usage', u'input', u'dcraw', u'format', u'tool', u'processing', u'mapping', u'optimized', u'streaming', u'graphics', u'technologies', u'editing', u'data', u'lossless', u'storing', u'raster', u'embedded', u'package', u'capability', u'vector', u'compositing', u'display', u'authoring', u'displays'])
intersection (1): set([u'bitmap'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (29): set([u'iconography', u'impression', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'effect', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (8): set([u'imago', u'paradigm', u'image', u'example', u'concentrate', u'model', u'prototype', u'epitome'])
predicted (48): set([u'comix', u'ad', u'eigomanga', u'indie', u'creation', u'imprint', u'fanzine', u'origins', u'fawcett', u'glyph', u'sketchbook', u'vertigo', u'anthology', u'media', u'1992', u'1989', u'2001', u'atlas', u'fangoria', u'webcomic', u'cinescape', u'niles', u'expose', u'2005', u'1999', u'dark', u'toyfare', u'mad', u'watchmen', u'heroes', u'skywald', u'1993', u'graphic', u'1995', u'1994', u'cow', u'bondage', u'comics', u'comicbook', u'1996', u'untitled', u'planet', u'2003', u'american', u'panini', u'fantaco', u'guedes', u'marvel'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (29): set([u'iconography', u'impression', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'effect', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (8): set([u'imago', u'paradigm', u'image', u'example', u'concentrate', u'model', u'prototype', u'epitome'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (1): set([u'picture'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (6): set([u'visual aspect', u'persona', u'impression', u'image', u'appearance', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (1): set([u'persona'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (48): set([u'comix', u'ad', u'eigomanga', u'indie', u'creation', u'imprint', u'fanzine', u'origins', u'fawcett', u'glyph', u'sketchbook', u'vertigo', u'anthology', u'media', u'1992', u'1989', u'2001', u'atlas', u'fangoria', u'webcomic', u'cinescape', u'niles', u'expose', u'2005', u'1999', u'dark', u'toyfare', u'mad', u'watchmen', u'heroes', u'skywald', u'1993', u'graphic', u'1995', u'1994', u'cow', u'bondage', u'comics', u'comicbook', u'1996', u'untitled', u'planet', u'2003', u'american', u'panini', u'fantaco', u'guedes', u'marvel'])
intersection (1): set([u'graphic'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (3): set([u'impression', u'image', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (34): set([u'iconography', u'imago', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'computer graphic', u'sonogram', u'panorama', u'ikon', u'electronic image', u'prototype', u'picture', u'semblance', u'cat scan', u'foil', u'concentrate', u'epitome', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation', u'model', u'paradigm', u'example'])
predicted (50): set([u'iconography', u'inscription', u'sarcophagus', u'statuette', u'medallion', u'reliquary', u'effigy', u'mirror', u'symbolic', u'triptych', u'depiction', u'symbolism', u'sanctuary', u'carving', u'madonna', u'adorns', u'adorning', u'casket', u'christ', u'obverse', u'pantocrator', u'priapus', u'depicted', u'figurine', u'buddha', u'symbols', u'allegory', u'symbolising', u'idol', u'picture', u'emblem', u'putto', u'altar', u'illustration', u'vase', u'enthroned', u'statue', u'entombment', u'depicting', u'depicts', u'representing', u'bronze', u'icon', u'symbolizing', u'engraved', u'pillar', u'crucifix', u'relic', u'sculpture', u'chest'])
intersection (3): set([u'iconography', u'picture', u'icon'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (15): set([u'picture', u'memory image', u'impression', u'image', u'mental image', u'mental representation', u'imagination image', u'visualization', u'visualisation', u'visual image', u'representation', u'auditory image', u'mental picture', u'thought-image', u'internal representation'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (0): set([])
IMAGE
golden (6): set([u'visual aspect', u'persona', u'impression', u'image', u'appearance', u'effect'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (1): set([u'persona'])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'system', u'scanning', u'filtering', u'portable', u'debugging', u'openexr', u'tiff', u'jpeg', u'bitmap', u'rendering', u'video', u'capabilities', u'file', u'images', u'tools', u'binary', u'formats', u'compression', u'exif', u'multimedia', u'storage', u'editors', u'dsp', u'content', u'application', u'digital', u'usage', u'input', u'dcraw', u'format', u'tool', u'processing', u'mapping', u'optimized', u'streaming', u'graphics', u'technologies', u'editing', u'data', u'lossless', u'storing', u'raster', u'embedded', u'package', u'capability', u'vector', u'compositing', u'display', u'authoring', u'displays'])
intersection (1): set([u'bitmap'])
IMAGE
golden (4): set([u'visual aspect', u'image', u'persona', u'appearance'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (0): set([])
IMAGE
golden (27): set([u'iconography', u'scan', u'collage', u'reflexion', u'image', u'bitmap', u'chiaroscuro', u'cyclorama', u'sonogram', u'panorama', u'cat scan', u'electronic image', u'computer graphic', u'picture', u'semblance', u'ikon', u'foil', u'diorama', u'icon', u'graphic', u'likeness', u'reflection', u'echogram', u'montage', u'inset', u'transparency', u'representation'])
predicted (50): set([u'luminance', u'orientation', u'nephroid', u'color', u'focus', u'inverted', u'cone', u'mirror', u'images', u'convolved', u'array', u'size', u'slice', u'waveform', u'circularly', u'graph', u'magnification', u'width', u'prism', u'tristimulus', u'foreground', u'eyepiece', u'pixel', u'opacity', u'picture', u'autostereogram', u'graticule', u'object', u'component', u'histogram', u'lens', u'lambertian', u'grid', u'offset', u'path', u'horizontal', u'pixels', u'interferogram', u'rasterized', u'output', u'reflection', u'resolution', u'filter', u'depth', u'specular', u'reflections', u'transparency', u'voxels', u'fixed', u'subpixels'])
intersection (3): set([u'picture', u'reflection', u'transparency'])
IMAGE
golden (4): set([u'visual aspect', u'image', u'persona', u'appearance'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (1): set([u'persona'])
IMAGE
golden (4): set([u'visual aspect', u'image', u'persona', u'appearance'])
predicted (49): set([u'outlook', u'earthy', u'impulse', u'humour', u'taste', u'naivety', u'cynicism', u'depiction', u'demeanor', u'attitude', u'manner', u'sense', u'facade', u'portrayal', u'integrity', u'humor', u'stubbornness', u'naivete', u'mockery', u'character', u'styling', u'disposition', u'masculinity', u'unabashed', u'ethos', u'appeal', u'approach', u'awareness', u'personality', u'persona', u'bold', u'nature', u'assertive', u'brand', u'sophistication', u'glamour', u'feminine', u'somewhat', u'temperament', u'mindset', u'lifestyle', u'commercialism', u'imagination', u'sensibilities', u'reputation', u'realism', u'sensibility', u'expression', u'youthful'])
intersection (1): set([u'persona'])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'former', u'previous'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (2): set([u'late', u'recent'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (2): set([u'late', u'later'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (2): set([u'late', u'later'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (2): set([u'late', u'recent'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (2): set([u'late', u'later'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'former', u'previous'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (4): set([u'late', u'previous', u'former', u'recent'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'later', u'recent'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (2): set([u'late', u'recent'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (3): set([u'late', u'tardy', u'belated'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (2): set([u'late', u'recent'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (50): set([u'summer', u'1960', u'1961', u'sometime', u'2000s', u'1962', u'1963', u'1986', u'1987', u'1984', u'1985', u'1968', u'1969', u'1980', u'1981', u'1942', u'1979', u'1967', u'when', u'mid', u'1988', u'1989', u'1955', u'ceasing', u'continuing', u'early', u'1957', u'1956', u'1982', u'1959', u'1958', u'1983', u'1990', u'1993', u'1992', u'1995', u'1994', u'1997', u'1996', u'1977', u'1976', u'1978', u'1973', u'1971', u'1970', u'2002', u'2000', u'2001', u'2007', u'1965'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (47): set([u'century', u'1400s', u'eighteenth', u'1960s', u'1980s', u'middle', u'seventeenth', u'1800s', u'1980as', u'90s', u'21st', u'1880s', u'onward', u'mid', u'14th', u'19th', u'onwards', u'fifties', u'1900s', u'15th', u'1870s', u'sixteenth', u'centuries', u'1910s', u'1860s', u'fifteenth', u'70s', u'early', u'80s', u'1500s', u'twentieth', u'during', u'1700s', u'1990as', u'17th', u'1800as', u'1600s', u'18th', u'20th', u'1300s', u'1970s', u'nineteenth', u'1840s', u'1940s', u'16th', u'1960as', u'1970as'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (48): set([u'madan', u'confidante', u'protegee', u'eldest', u'elder', u'second', u'kunhi', u'nephew', u'grandfather', u'parsi', u'sir', u'velayudhan', u'hasmah', u'desai', u'zaleha', u'farah', u'adopted', u'hutheesing', u'joseph', u'niece', u'fourth', u'suwanda', u'godfather', u'granddaughter', u'indira', u'aloysius', u'youngest', u'famous', u'hh', u'saigol', u'shahi', u'grandnephew', u'law', u'jamini', u'raziuddin', u'wife', u'barrister', u'favorite', u'brother', u'mrs', u'future', u'chandramohan', u'mentor', u'mother', u'eleni', u'widow', u'childhood', u'protege'])
intersection (0): set([])
LATE
golden (1): set([u'late'])
predicted (46): set([u'summer', u'filling', u'gong', u'letterman', u'show', u'uiscedwr', u'rockpalast', u'1999a2000', u'1960s', u'hosting', u'1980s', u'2gb', u'2000s', u'90', u'soucheray', u'1990s', u'benzie', u'brandmeier', u'nineties', u'90s', u'sportsnight', u'mid', u'kilborn', u'roadhouse', u'carolla', u'80s', u'kick', u'briefly', u'mornings', u'1950s', u'1970s', u'departed', u'70s', u'early', u'heat', u'during', u'mcenroe', u'2006a2007', u'afternoons', u'drive', u'leaving', u'greaseman', u'afternoon', u'uk', u'night', u'lineup'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'boyhood', u'love', u'scandalous', u'absolutely', u'wedding', u'waking', u'autobiographical', u'dear', u'woman', u'dreaming', u'girlfriend', u'bizarre', u'spoof', u'happiness', u'happy', u'story', u'slice', u'bride', u'true', u'satire', u'humorous', u'wonderful', u'thoughts', u'chronicling', u'confessions', u'memoir', u'loving', u'murder', u'autobiography', u'twentysomething', u'journey', u'diary', u'child', u'postcards', u'friends', u'witness', u'dreams', u'lucy', u'fictionalized', u'biographical', u'towelhead', u'teenager', u'soldier', u'travails', u'fictionalizes', u'snapshot', u'antiwar', u'heartbeat', u'entitled', u'my'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'ghetto', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (12): set([u'living', u'life', u'life eternal', u'beingness', u'being', u'survival', u'skin', u'animation', u'eternal life', u'existence', u'aliveness', u'endurance'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'boyhood', u'love', u'scandalous', u'absolutely', u'wedding', u'waking', u'autobiographical', u'dear', u'woman', u'dreaming', u'girlfriend', u'bizarre', u'spoof', u'happiness', u'happy', u'story', u'slice', u'bride', u'true', u'satire', u'humorous', u'wonderful', u'thoughts', u'chronicling', u'confessions', u'memoir', u'loving', u'murder', u'autobiography', u'twentysomething', u'journey', u'diary', u'child', u'postcards', u'friends', u'witness', u'dreams', u'lucy', u'fictionalized', u'biographical', u'towelhead', u'teenager', u'soldier', u'travails', u'fictionalizes', u'snapshot', u'antiwar', u'heartbeat', u'entitled', u'my'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (15): set([u'living', u'life', u'life eternal', u'beingness', u'being', u'survival', u'eternal life', u'aerobiosis', u'biology', u'animation', u'skin', u'existence', u'aliveness', u'organic phenomenon', u'endurance'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (1): set([u'living'])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'life', u'time', u'life sentence', u'prison term', u'sentence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (3): set([u'living', u'life', u'experience'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (1): set([u'living'])
LIFE
golden (7): set([u'life', u'someone', u'somebody', u'soul', u'person', u'individual', u'mortal'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (1): set([u'soul'])
LIFE
golden (7): set([u'life', u'someone', u'somebody', u'soul', u'person', u'individual', u'mortal'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (1): set([u'soul'])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (3): set([u'living', u'life', u'experience'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (6): set([u'living', u'life', u'beingness', u'being', u'experience', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (1): set([u'living'])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'boyhood', u'love', u'scandalous', u'absolutely', u'wedding', u'waking', u'autobiographical', u'dear', u'woman', u'dreaming', u'girlfriend', u'bizarre', u'spoof', u'happiness', u'happy', u'story', u'slice', u'bride', u'true', u'satire', u'humorous', u'wonderful', u'thoughts', u'chronicling', u'confessions', u'memoir', u'loving', u'murder', u'autobiography', u'twentysomething', u'journey', u'diary', u'child', u'postcards', u'friends', u'witness', u'dreams', u'lucy', u'fictionalized', u'biographical', u'towelhead', u'teenager', u'soldier', u'travails', u'fictionalizes', u'snapshot', u'antiwar', u'heartbeat', u'entitled', u'my'])
intersection (0): set([])
LIFE
golden (12): set([u'living', u'life', u'life eternal', u'beingness', u'being', u'survival', u'skin', u'animation', u'eternal life', u'existence', u'aliveness', u'endurance'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (1): set([u'living'])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (9): set([u'beingness', u'life', u'being', u'days', u'period', u'existence', u'years', u'time period', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'time period', u'life', u'period', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (9): set([u'life', u'hereafter', u'afterlife', u'period', u'lifespan', u'time period', u'lifetime', u'life-time', u'period of time'])
predicted (50): set([u'decease', u'writings', u'memoirs', u'imprisonment', u'influence', u'pursuits', u'years', u'convalescence', u'death', u'journalistic', u'lifetime', u'writing', u'religious', u'reminiscences', u'adolescence', u'devoted', u'autobiography', u'retirement', u'mohun', u'scholarly', u'illness', u'literary', u'reputation', u'formative', u'upbringing', u'seclusion', u'memoir', u'contemporaries', u'takusaburm', u'pinang', u'reign', u'incarceration', u'untimely', u'experiences', u'remainder', u'recollections', u'widowhood', u'fatheras', u'career', u'travels', u'wifeas', u'spent', u'premature', u'sojourn', u'youth', u'legacy', u'tenure', u'maccoll', u'estimation', u'childhood'])
intersection (1): set([u'lifetime'])
LIFE
golden (12): set([u'living', u'life', u'life eternal', u'beingness', u'being', u'survival', u'skin', u'animation', u'eternal life', u'existence', u'aliveness', u'endurance'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (9): set([u'life', u'hereafter', u'afterlife', u'period', u'lifespan', u'time period', u'lifetime', u'life-time', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'time period', u'life', u'period', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'time period', u'life', u'period', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'organic phenomenon', u'life', u'aerobiosis', u'biology'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (9): set([u'life', u'hereafter', u'afterlife', u'period', u'lifespan', u'time period', u'lifetime', u'life-time', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'time period', u'life', u'period', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (6): set([u'life', u'days', u'period', u'years', u'time period', u'period of time'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'animate thing', u'life', u'living thing', u'wildlife'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (7): set([u'life', u'someone', u'somebody', u'soul', u'person', u'individual', u'mortal'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (9): set([u'life', u'hereafter', u'afterlife', u'period', u'lifespan', u'time period', u'lifetime', u'life-time', u'period of time'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (5): set([u'life', u'time', u'life sentence', u'prison term', u'sentence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (36): set([u'airiness', u'living thing', u'energy', u'ginger', u'vim', u'alacrity', u'elan', u'brio', u'buoyancy', u'briskness', u'esprit', u'pep', u'liveliness', u'vigour', u'animation', u'exuberance', u'irrepressibility', u'jauntiness', u'enthusiasm', u'vigor', u'life', u'wildlife', u'sprightliness', u'delicacy', u'invigoration', u'spirit', u'breeziness', u'pertness', u'vivification', u'high-spiritedness', u'smartness', u'ebullience', u'spiritedness', u'peppiness', u'animate thing', u'muscularity'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (11): set([u'profile', u'autobiography', u'life', u'chronicle', u'life story', u'account', u'hagiography', u'life history', u'story', u'biography', u'history'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'organic phenomenon', u'life', u'aerobiosis', u'biology'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (12): set([u'living', u'life', u'life eternal', u'beingness', u'being', u'survival', u'skin', u'animation', u'eternal life', u'existence', u'aliveness', u'endurance'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (1): set([u'living'])
LIFE
golden (7): set([u'life', u'someone', u'somebody', u'soul', u'person', u'individual', u'mortal'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (14): set([u'profile', u'autobiography', u'life', u'chronicle', u'beingness', u'being', u'life story', u'account', u'hagiography', u'life history', u'existence', u'story', u'biography', u'history'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (7): set([u'life', u'someone', u'somebody', u'soul', u'person', u'individual', u'mortal'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (1): set([u'soul'])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (4): set([u'being', u'beingness', u'life', u'existence'])
predicted (50): set([u'decease', u'writings', u'memoirs', u'imprisonment', u'influence', u'pursuits', u'years', u'convalescence', u'death', u'journalistic', u'lifetime', u'writing', u'religious', u'reminiscences', u'adolescence', u'devoted', u'autobiography', u'retirement', u'mohun', u'scholarly', u'illness', u'literary', u'reputation', u'formative', u'upbringing', u'seclusion', u'memoir', u'contemporaries', u'takusaburm', u'pinang', u'reign', u'incarceration', u'untimely', u'experiences', u'remainder', u'recollections', u'widowhood', u'fatheras', u'career', u'travels', u'wifeas', u'spent', u'premature', u'sojourn', u'youth', u'legacy', u'tenure', u'maccoll', u'estimation', u'childhood'])
intersection (0): set([])
LIFE
golden (5): set([u'being', u'beingness', u'life', u'existence', u'ghetto'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (9): set([u'life', u'hereafter', u'afterlife', u'period', u'lifespan', u'time period', u'lifetime', u'life-time', u'period of time'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (4): set([u'animate thing', u'life', u'living thing', u'wildlife'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (0): set([])
LIFE
golden (3): set([u'living', u'life', u'experience'])
predicted (50): set([u'spiritual', u'cultivation', u'dynamic', u'intellectual', u'sociability', u'beings', u'sharing', u'moral', u'human', u'sense', u'establishing', u'everyday', u'physical', u'caring', u'living', u'self', u'awareness', u'socialization', u'maturation', u'spirituality', u'vital', u'humankind', u'oneas', u'understandings', u'transformation', u'persistence', u'development', u'evolving', u'humanityas', u'nature', u'enjoyment', u'capacities', u'realization', u'understanding', u'appreciation', u'experiences', u'preservation', u'curiosity', u'potentials', u'nurturing', u'wholeness', u'lifestyle', u'reflection', u'humanity', u'habits', u'sociality', u'context', u'emotional', u'environments', u'mankind'])
intersection (1): set([u'living'])
LIFE
golden (9): set([u'life', u'hereafter', u'afterlife', u'period', u'lifespan', u'time period', u'lifetime', u'life-time', u'period of time'])
predicted (50): set([u'decease', u'writings', u'memoirs', u'imprisonment', u'influence', u'pursuits', u'years', u'convalescence', u'death', u'journalistic', u'lifetime', u'writing', u'religious', u'reminiscences', u'adolescence', u'devoted', u'autobiography', u'retirement', u'mohun', u'scholarly', u'illness', u'literary', u'reputation', u'formative', u'upbringing', u'seclusion', u'memoir', u'contemporaries', u'takusaburm', u'pinang', u'reign', u'incarceration', u'untimely', u'experiences', u'remainder', u'recollections', u'widowhood', u'fatheras', u'career', u'travels', u'wifeas', u'spent', u'premature', u'sojourn', u'youth', u'legacy', u'tenure', u'maccoll', u'estimation', u'childhood'])
intersection (1): set([u'lifetime'])
LIFE
golden (4): set([u'time period', u'life', u'period', u'period of time'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIFE
golden (12): set([u'living', u'life', u'life eternal', u'beingness', u'being', u'survival', u'skin', u'animation', u'eternal life', u'existence', u'aliveness', u'endurance'])
predicted (50): set([u'remembering', u'heart', u'own', u'danger', u'father', u'past', u'shame', u'embrace', u'brilljard', u'miserable', u'fear', u'yet', u'conscience', u'destiny', u'desperation', u'memories', u'truly', u'tenchi', u'fate', u'emotions', u'secret', u'thoughts', u'way', u'memory', u'willingly', u'desires', u'compassion', u'even', u'ignorance', u'henchard', u'job', u'hers', u'now', u'true', u'dreams', u'desire', u'faith', u'forever', u'fearful', u'wish', u'fears', u'soul', u'grandfather', u'sanity', u'despair', u'ego', u'mother', u'completely', u'haruhi', u'dream'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'demo', u'roxy', u'concert', u'cover', u'cd', u'demos', u'featured', u'discography', u'kmfdm', u'madness', u'unplugged', u'album', u'bootleg', u'recorded', u'u2', u'version', u'lp', u'pcppep', u'tribute', u'featuring', u'entitled', u'remixes', u'abba', u'sessions', u'track', u'compilation', u'instrumental', u'recordings', u'remixed', u'studio', u'albums', u'ultrabeat', u'metallica', u'moloko', u'remix', u'versions', u'performances', u'hipodil', u'performing', u'outtakes', u'medley', u'setlist', u'recording', u'tour', u'freezepop', u'jamiroquai', u'acoustic', u'concerts', u'faithless', u'songs'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (0): set([])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (12): set([u'last', u'hold out', u'live on', u'hold up', u'live', u'endure', u'live out', u'stand up', u'go', u'survive', u'hold water', u'perennate'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'go'])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (12): set([u'last', u'hold out', u'live on', u'hold up', u'live', u'endure', u'live out', u'stand up', u'go', u'survive', u'hold water', u'perennate'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'go'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'espnas', u'cbc', u'lunchtime', u'espn', u'toonami', u'ustream', u'hdnet', u'cbbc', u'quizmania', u'airs', u'saturday', u'weekly', u'primetime', u'webcasts', u'segments', u'citv', u'quiz', u'espn2', u'sunday', u'program', u'cinemax', u'disney', u'weekday', u'sbs', u'aired', u'friday', u'broadcast', u'promos', u'abc1', u'chat', u'webcast', u'e4', u'segment', u'airings', u'hbo', u'bbc2', u'hnic', u'programs', u'celebrity', u'telecast', u'taped', u'cbeebies', u'afternoon', u'syndicated', u'channel', u'night', u'sky1', u'repeats', u'tvas', u'gsn'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (43): set([u'bivouac', u'reside', u'people', u'move', u'bach', u'bushwhack', u'buccaneer', u'camp out', u'pig it', u'wanton', u'occupy', u'domicile', u'shack', u'live', u'dissipate', u'lodge', u'live together', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'cash out', u'bachelor', u'live down', u'dwell', u'pig', u'eke out', u'tenant', u'lodge in', u'shack up', u'room', u'camp', u'board', u'domiciliate', u'overpopulate', u'neighbor', u'swing', u'vegetate', u'encamp', u'unlive', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'demo', u'roxy', u'concert', u'cover', u'cd', u'demos', u'featured', u'discography', u'kmfdm', u'madness', u'unplugged', u'album', u'bootleg', u'recorded', u'u2', u'version', u'lp', u'pcppep', u'tribute', u'featuring', u'entitled', u'remixes', u'abba', u'sessions', u'track', u'compilation', u'instrumental', u'recordings', u'remixed', u'studio', u'albums', u'ultrabeat', u'metallica', u'moloko', u'remix', u'versions', u'performances', u'hipodil', u'performing', u'outtakes', u'medley', u'setlist', u'recording', u'tour', u'freezepop', u'jamiroquai', u'acoustic', u'concerts', u'faithless', u'songs'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (43): set([u'bivouac', u'reside', u'people', u'move', u'bach', u'bushwhack', u'buccaneer', u'camp out', u'pig it', u'wanton', u'occupy', u'domicile', u'shack', u'live', u'dissipate', u'lodge', u'live together', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'cash out', u'bachelor', u'live down', u'dwell', u'pig', u'eke out', u'tenant', u'lodge in', u'shack up', u'room', u'camp', u'board', u'domiciliate', u'overpopulate', u'neighbor', u'swing', u'vegetate', u'encamp', u'unlive', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'demo', u'roxy', u'concert', u'cover', u'cd', u'demos', u'featured', u'discography', u'kmfdm', u'madness', u'unplugged', u'album', u'bootleg', u'recorded', u'u2', u'version', u'lp', u'pcppep', u'tribute', u'featuring', u'entitled', u'remixes', u'abba', u'sessions', u'track', u'compilation', u'instrumental', u'recordings', u'remixed', u'studio', u'albums', u'ultrabeat', u'metallica', u'moloko', u'remix', u'versions', u'performances', u'hipodil', u'performing', u'outtakes', u'medley', u'setlist', u'recording', u'tour', u'freezepop', u'jamiroquai', u'acoustic', u'concerts', u'faithless', u'songs'])
intersection (0): set([])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'espnas', u'cbc', u'lunchtime', u'espn', u'toonami', u'ustream', u'hdnet', u'cbbc', u'quizmania', u'airs', u'saturday', u'weekly', u'primetime', u'webcasts', u'segments', u'citv', u'quiz', u'espn2', u'sunday', u'program', u'cinemax', u'disney', u'weekday', u'sbs', u'aired', u'friday', u'broadcast', u'promos', u'abc1', u'chat', u'webcast', u'e4', u'segment', u'airings', u'hbo', u'bbc2', u'hnic', u'programs', u'celebrity', u'telecast', u'taped', u'cbeebies', u'afternoon', u'syndicated', u'channel', u'night', u'sky1', u'repeats', u'tvas', u'gsn'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (0): set([])
LIVE
golden (43): set([u'bivouac', u'reside', u'people', u'move', u'bach', u'bushwhack', u'buccaneer', u'camp out', u'pig it', u'wanton', u'occupy', u'domicile', u'shack', u'live', u'dissipate', u'lodge', u'live together', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'cash out', u'bachelor', u'live down', u'dwell', u'pig', u'eke out', u'tenant', u'lodge in', u'shack up', u'room', u'camp', u'board', u'domiciliate', u'overpopulate', u'neighbor', u'swing', u'vegetate', u'encamp', u'unlive', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (12): set([u'last', u'hold out', u'live on', u'hold up', u'live', u'endure', u'live out', u'stand up', u'go', u'survive', u'hold water', u'perennate'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'go'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (43): set([u'bivouac', u'reside', u'people', u'move', u'bach', u'bushwhack', u'buccaneer', u'camp out', u'pig it', u'wanton', u'occupy', u'domicile', u'shack', u'live', u'dissipate', u'lodge', u'live together', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'cash out', u'bachelor', u'live down', u'dwell', u'pig', u'eke out', u'tenant', u'lodge in', u'shack up', u'room', u'camp', u'board', u'domiciliate', u'overpopulate', u'neighbor', u'swing', u'vegetate', u'encamp', u'unlive', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (1): set([u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (16): set([u'wanton', u'move', u'live', u'bach', u'bushwhack', u'cash out', u'bachelor', u'live down', u'dissipate', u'swing', u'vegetate', u'buccaneer', u'pig', u'pig it', u'eke out', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (13): set([u'be', u'last', u'hold out', u'live', u'hold up', u'live on', u'endure', u'live out', u'stand up', u'go', u'survive', u'hold water', u'perennate'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (1): set([u'go'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (27): set([u'move', u'bach', u'bushwhack', u'hold water', u'live on', u'go', u'buccaneer', u'perennate', u'pig it', u'live down', u'hold up', u'live', u'dissipate', u'survive', u'vegetate', u'hold out', u'cash out', u'bachelor', u'wanton', u'live out', u'stand up', u'pig', u'eke out', u'last', u'endure', u'swing', u'unlive'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (2): set([u'go', u'move'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'reside', u'spawn', u'forage', u'migrate', u'prefer', u'outnumber', u'migrant', u'constitute', u'congregate', u'exist', u'are', u'roamed', u'furbearers', u'bantus', u'nests', u'occur', u'living', u'seminomadic', u'inhabiting', u'breed', u'farmed', u'dongria', u'inhabit', u'thrive', u'residing', u'lived', u'populate', u'shelterbelts', u'scattered', u'roost', u'bettas', u'herders', u'fished', u'graze', u'lives', u'groups', u'communities', u'hunted', u'eat', u'ate', u'animals', u'flocks', u'nesters', u'gather', u'habitations', u'resided', u'roam', u'dwellers', u'found', u'colonies'])
intersection (3): set([u'reside', u'inhabit', u'populate'])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (28): set([u'bivouac', u'reside', u'people', u'camp out', u'occupy', u'domicile', u'shack', u'live', u'board', u'lodge', u'dwell', u'inhabit', u'tent', u'be', u'populate', u'nest', u'neighbour', u'domiciliate', u'live together', u'tenant', u'lodge in', u'room', u'camp', u'overpopulate', u'neighbor', u'shack up', u'encamp', u'cohabit'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LIVE
golden (2): set([u'be', u'live'])
predicted (50): set([u'pretend', u'help', u'give', u'confide', u'move', u'share', u'renovate', u'see', u'decided', u'embrace', u'go', u'wished', u'take', u'educate', u'raise', u'make', u'comfort', u'visit', u'start', u'choose', u'wanting', u'forsake', u'listen', u'do', u'return', u'invite', u'cope', u'propose', u'forgive', u'promise', u'stay', u'decide', u'teach', u'wanted', u'come', u'grow', u'wait', u'refuse', u'look', u'die', u'conceive', u'work', u'grieve', u'beg', u'marry', u'remain', u'continue', u'meet', u'agree', u'talk'])
intersection (0): set([])
LOSE
golden (2): set([u'turn a loss', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (6): set([u'sleep off', u'white-out', u'leave', u'whiteout', u'lose', u'forget'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (1): set([u'leave'])
LOSE
golden (3): set([u'leave', u'forget', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (1): set([u'forget'])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (2): set([u'turn a loss', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (1): set([u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (2): set([u'suffer', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (5): set([u'turn a loss', u'sleep off', u'white-out', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (2): set([u'suffer', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (3): set([u'leave', u'forget', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (1): set([u'forget'])
LOSE
golden (6): set([u'sleep off', u'forget', u'leave', u'whiteout', u'lose', u'white-out'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (1): set([u'forget'])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (9): set([u'go down', u'take the count', u"drop one's serve", u'white-out', u'drop', u'sleep off', u'whiteout', u'lose', u'remain down'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (3): set([u'overlook', u'miss', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'deciding', u'forfeit', u'rebounded', u'managed', u'4a1', u'4a2', u'give', u'win', u'penalties', u'clinch', u'playoff', u'3a2', u'winning', u'capture', u'clinching', u'overcame', u'lead', u'6a3', u'4a3', u'next', u'add', u'going', u'eliminate', u'6a2', u'tie', u'final', u'6a4', u'6a5', u'regain', u'rallied', u'play', u'return', u'loss', u'quarterfinal', u'semis', u'fell', u'7a6', u'losing', u'2', u'faced', u'advance', u'earn', u'lost', u'needing', u'facing', u'victory', u'defeat', u'went', u'reclaim', u'semifinal'])
intersection (0): set([])
LOSE
golden (2): set([u'turn a loss', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (2): set([u'turn a loss', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'deciding', u'forfeit', u'rebounded', u'managed', u'4a1', u'4a2', u'give', u'win', u'penalties', u'clinch', u'playoff', u'3a2', u'winning', u'capture', u'clinching', u'overcame', u'lead', u'6a3', u'4a3', u'next', u'add', u'going', u'eliminate', u'6a2', u'tie', u'final', u'6a4', u'6a5', u'regain', u'rallied', u'play', u'return', u'loss', u'quarterfinal', u'semis', u'fell', u'7a6', u'losing', u'2', u'faced', u'advance', u'earn', u'lost', u'needing', u'facing', u'victory', u'defeat', u'went', u'reclaim', u'semifinal'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (3): set([u'overlook', u'miss', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (2): set([u'turn a loss', u'lose'])
predicted (50): set([u'deciding', u'forfeit', u'rebounded', u'managed', u'4a1', u'4a2', u'give', u'win', u'penalties', u'clinch', u'playoff', u'3a2', u'winning', u'capture', u'clinching', u'overcame', u'lead', u'6a3', u'4a3', u'next', u'add', u'going', u'eliminate', u'6a2', u'tie', u'final', u'6a4', u'6a5', u'regain', u'rallied', u'play', u'return', u'loss', u'quarterfinal', u'semis', u'fell', u'7a6', u'losing', u'2', u'faced', u'advance', u'earn', u'lost', u'needing', u'facing', u'victory', u'defeat', u'went', u'reclaim', u'semifinal'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (6): set([u'sleep off', u'forget', u'leave', u'whiteout', u'lose', u'white-out'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (1): set([u'forget'])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'deciding', u'forfeit', u'rebounded', u'managed', u'4a1', u'4a2', u'give', u'win', u'penalties', u'clinch', u'playoff', u'3a2', u'winning', u'capture', u'clinching', u'overcame', u'lead', u'6a3', u'4a3', u'next', u'add', u'going', u'eliminate', u'6a2', u'tie', u'final', u'6a4', u'6a5', u'regain', u'rallied', u'play', u'return', u'loss', u'quarterfinal', u'semis', u'fell', u'7a6', u'losing', u'2', u'faced', u'advance', u'earn', u'lost', u'needing', u'facing', u'victory', u'defeat', u'went', u'reclaim', u'semifinal'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (2): set([u'suffer', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (2): set([u'suffer', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (1): set([u'suffer'])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (1): set([u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'harm', u'forget', u'give', u'feel', u'anyway', u'accept', u'resist', u'touch', u'see', u'want', u'need', u'trust', u'if', u'even', u'anymore', u'deserve', u'make', u'help', u'hear', u'choose', u'reject', u'mean', u'cause', u'take', u'handle', u'deliver', u'forgive', u'hurt', u'react', u'lift', u'spare', u'whatever', u'not', u'weep', u'regret', u'refuse', u'remember', u'anything', u'bring', u'die', u'say', u'agree', u'assure', u'admit', u'so', u'endanger', u'understand', u'listen', u'fix', u'justify'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'consolidate', u'defer', u'dilute', u'consider', u'give', u'win', u'enjoy', u'reduce', u'prosper', u'accept', u'impair', u'cease', u'maximize', u'recover', u'weaken', u'suffer', u'renounce', u'jeopardize', u'renew', u'concede', u'failed', u'enough', u'sustain', u'take', u'reject', u'threaten', u'alter', u'choose', u'regain', u'undercut', u'extend', u'lend', u'absorb', u'acquire', u'displace', u'assert', u'gain', u'decide', u'diminish', u'relinquish', u'deprive', u'refuse', u'alienate', u'pursue', u'keep', u'remain', u'dissolve', u'abandon', u'retain', u'agree'])
intersection (0): set([])
LOSE
golden (6): set([u'go down', u'take the count', u"drop one's serve", u'drop', u'lose', u'remain down'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
LOSE
golden (4): set([u'white-out', u'sleep off', u'whiteout', u'lose'])
predicted (50): set([u'temporarily', u'deform', u'slowly', u'touch', u'move', u'continue', u'enlarge', u'multiply', u'deplete', u'carry', u'hitpoints', u'conversely', u'disappear', u'consume', u'raise', u'become', u'regenerate', u'constantly', u'damage', u'quickly', u'surroundings', u'maintain', u'sustain', u'take', u'without', u'destroy', u'cause', u'alter', u'instantly', u'begin', u'gains', u'magnify', u'get', u'acquire', u'reach', u'change', u'survive', u'losing', u'grow', u'expand', u'indefinitely', u'keep', u'leave', u'eliminate', u'remain', u'repel', u'enter', u'kill', u'multiwinians', u'loses'])
intersection (0): set([])
MEET
golden (32): set([u'crowd', u'foregather', u'converge', u'cluster', u'congregate', u'forgather', u'flock', u'group', u'interact', u'visit', u'pick up', u'caucus', u'reunite', u'fete', u'call', u'convene', u'get together', u'call in', u'fort up', u'club', u'meet', u'assemble', u'celebrate', u'fort', u'gather', u'hive', u'aggroup', u'turn out', u'rendezvous', u'constellate', u'clump', u'crowd together'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (6): set([u'gather', u'foregather', u'meet up with', u'forgather', u'assemble', u'meet'])
predicted (50): set([u'managed', u'help', u'subdue', u'depose', u'agreed', u'disarm', u'defect', u'hurried', u'pacify', u'persuade', u'accompany', u'seek', u'invite', u'forced', u'wanted', u'proceeded', u'proceed', u'send', u'mediate', u'convince', u'induced', u'invade', u'sent', u'urge', u'assist', u'wished', u'tried', u'secretly', u'attempted', u'dispatched', u'negotiate', u'refused', u'leave', u'met', u'placate', u'compelled', u'advised', u'ask', u'appealed', u'surrender', u'oust', u'forcing', u'join', u'confront', u'invited', u'urged', u'try', u'decided', u'aid', u'persuaded'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (1): set([u'stay'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (1): set([u'stay'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (49): set([u'interschool', u'scac', u'competing', u'cisaa', u'participate', u'idta', u'issma', u'mshsaa', u'youngarts', u'wiaa', u'underclassmen', u'inter', u'iasas', u'take', u'igssa', u'scsboa', u'freshers', u'interhouse', u'niaa', u'ncfl', u'regularly', u'meets', u'attend', u'osaa', u'reunions', u'auskick', u'ncfca', u'invitations', u'met', u'mathcounts', u'bandfest', u'finals', u'nsic', u'nsaa', u'socials', u'worldquest', u'invited', u'tryouts', u'alumni', u'commencements', u'regionals', u'compete', u'homecoming', u'chsaa', u'coordinate', u'nyssma', u'ihsa', u'convocations', u'gsac'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'managed', u'help', u'subdue', u'depose', u'agreed', u'disarm', u'defect', u'hurried', u'pacify', u'persuade', u'accompany', u'seek', u'invite', u'forced', u'wanted', u'proceeded', u'proceed', u'send', u'mediate', u'convince', u'induced', u'invade', u'sent', u'urge', u'assist', u'wished', u'tried', u'secretly', u'attempted', u'dispatched', u'negotiate', u'refused', u'leave', u'met', u'placate', u'compelled', u'advised', u'ask', u'appealed', u'surrender', u'oust', u'forcing', u'join', u'confront', u'invited', u'urged', u'try', u'decided', u'aid', u'persuaded'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'managed', u'help', u'subdue', u'depose', u'agreed', u'disarm', u'defect', u'hurried', u'pacify', u'persuade', u'accompany', u'seek', u'invite', u'forced', u'wanted', u'proceeded', u'proceed', u'send', u'mediate', u'convince', u'induced', u'invade', u'sent', u'urge', u'assist', u'wished', u'tried', u'secretly', u'attempted', u'dispatched', u'negotiate', u'refused', u'leave', u'met', u'placate', u'compelled', u'advised', u'ask', u'appealed', u'surrender', u'oust', u'forcing', u'join', u'confront', u'invited', u'urged', u'try', u'decided', u'aid', u'persuaded'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (6): set([u'gather', u'foregather', u'meet up with', u'forgather', u'assemble', u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (3): set([u'meet', u'breast', u'converge'])
predicted (50): set([u'bends', u'eastward', u'curves', u'converge', u'past', u'continues', u'cuts', u'bisect', u'beyond', u'proceeds', u'goes', u'northward', u'thence', u'paralleling', u'merges', u'southward', u'diverge', u'widens', u'divides', u'meets', u'ends', u'towards', u'intersect', u'climbs', u'resumes', u'continuing', u'veers', u'terminates', u'joins', u'rejoins', u'westward', u'parallel', u'bypassing', u'runs', u'crosses', u'join', u'splits', u'diverging', u'follows', u'leaves', u'starts', u'descends', u'accesses', u'travels', u'merge', u'turns', u'crossing', u'onto', u'ascends', u'joining'])
intersection (1): set([u'converge'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'managed', u'help', u'subdue', u'depose', u'agreed', u'disarm', u'defect', u'hurried', u'pacify', u'persuade', u'accompany', u'seek', u'invite', u'forced', u'wanted', u'proceeded', u'proceed', u'send', u'mediate', u'convince', u'induced', u'invade', u'sent', u'urge', u'assist', u'wished', u'tried', u'secretly', u'attempted', u'dispatched', u'negotiate', u'refused', u'leave', u'met', u'placate', u'compelled', u'advised', u'ask', u'appealed', u'surrender', u'oust', u'forcing', u'join', u'confront', u'invited', u'urged', u'try', u'decided', u'aid', u'persuaded'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (49): set([u'interschool', u'scac', u'competing', u'cisaa', u'participate', u'idta', u'issma', u'mshsaa', u'youngarts', u'wiaa', u'underclassmen', u'inter', u'iasas', u'take', u'igssa', u'scsboa', u'freshers', u'interhouse', u'niaa', u'ncfl', u'regularly', u'meets', u'attend', u'osaa', u'reunions', u'auskick', u'ncfca', u'invitations', u'met', u'mathcounts', u'bandfest', u'finals', u'nsic', u'nsaa', u'socials', u'worldquest', u'invited', u'tryouts', u'alumni', u'commencements', u'regionals', u'compete', u'homecoming', u'chsaa', u'coordinate', u'nyssma', u'ihsa', u'convocations', u'gsac'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'managed', u'help', u'subdue', u'depose', u'agreed', u'disarm', u'defect', u'hurried', u'pacify', u'persuade', u'accompany', u'seek', u'invite', u'forced', u'wanted', u'proceeded', u'proceed', u'send', u'mediate', u'convince', u'induced', u'invade', u'sent', u'urge', u'assist', u'wished', u'tried', u'secretly', u'attempted', u'dispatched', u'negotiate', u'refused', u'leave', u'met', u'placate', u'compelled', u'advised', u'ask', u'appealed', u'surrender', u'oust', u'forcing', u'join', u'confront', u'invited', u'urged', u'try', u'decided', u'aid', u'persuaded'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (6): set([u'gather', u'foregather', u'meet up with', u'forgather', u'assemble', u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (0): set([])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (49): set([u'interschool', u'scac', u'competing', u'cisaa', u'participate', u'idta', u'issma', u'mshsaa', u'youngarts', u'wiaa', u'underclassmen', u'inter', u'iasas', u'take', u'igssa', u'scsboa', u'freshers', u'interhouse', u'niaa', u'ncfl', u'regularly', u'meets', u'attend', u'osaa', u'reunions', u'auskick', u'ncfca', u'invitations', u'met', u'mathcounts', u'bandfest', u'finals', u'nsic', u'nsaa', u'socials', u'worldquest', u'invited', u'tryouts', u'alumni', u'commencements', u'regionals', u'compete', u'homecoming', u'chsaa', u'coordinate', u'nyssma', u'ihsa', u'convocations', u'gsac'])
intersection (0): set([])
MEET
golden (6): set([u'gather', u'foregather', u'meet up with', u'forgather', u'assemble', u'meet'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (1): set([u'stay'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'managed', u'help', u'subdue', u'depose', u'agreed', u'disarm', u'defect', u'hurried', u'pacify', u'persuade', u'accompany', u'seek', u'invite', u'forced', u'wanted', u'proceeded', u'proceed', u'send', u'mediate', u'convince', u'induced', u'invade', u'sent', u'urge', u'assist', u'wished', u'tried', u'secretly', u'attempted', u'dispatched', u'negotiate', u'refused', u'leave', u'met', u'placate', u'compelled', u'advised', u'ask', u'appealed', u'surrender', u'oust', u'forcing', u'join', u'confront', u'invited', u'urged', u'try', u'decided', u'aid', u'persuaded'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (17): set([u'call in', u'run across', u'celebrate', u'rendezvous', u'visit', u'pick up', u'cross', u'reunite', u'see', u'fete', u'get together', u'intersect', u'run into', u'come across', u'call', u'encounter', u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (5): set([u'receive', u'meet', u'experience', u'have', u'encounter'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (0): set([])
MEET
golden (7): set([u'play', u'confront', u'take on', u'face', u'replay', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (1): set([u'confront'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (1): set([u'stay'])
MEET
golden (8): set([u'run across', u'cross', u'see', u'intersect', u'run into', u'come across', u'meet', u'encounter'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (1): set([u'meet'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (0): set([])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (10): set([u'play', u'receive', u'confront', u'take on', u'experience', u'face', u'replay', u'have', u'meet', u'encounter'])
predicted (50): set([u'managed', u'help', u'subdue', u'depose', u'agreed', u'disarm', u'defect', u'hurried', u'pacify', u'persuade', u'accompany', u'seek', u'invite', u'forced', u'wanted', u'proceeded', u'proceed', u'send', u'mediate', u'convince', u'induced', u'invade', u'sent', u'urge', u'assist', u'wished', u'tried', u'secretly', u'attempted', u'dispatched', u'negotiate', u'refused', u'leave', u'met', u'placate', u'compelled', u'advised', u'ask', u'appealed', u'surrender', u'oust', u'forcing', u'join', u'confront', u'invited', u'urged', u'try', u'decided', u'aid', u'persuaded'])
intersection (1): set([u'confront'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (10): set([u'call in', u'visit', u'pick up', u'reunite', u'fete', u'call', u'get together', u'rendezvous', u'meet', u'celebrate'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (2): set([u'reunite', u'visit'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'promises', u'befriend', u'depart', u'help', u'encourages', u'move', u'back', u'proposes', u'embrace', u'go', u'decides', u'decide', u'find', u'reconcile', u'leave', u'overhear', u'asks', u'babysit', u'visit', u'agrees', u'reunite', u'advises', u'begin', u'invite', u'get', u'happily', u'propose', u'watch', u'stay', u'warn', u'kiss', u'ask', u'come', u'discuss', u'again', u'refuse', u'wilma', u'look', u'elope', u'talking', u'confront', u'persuades', u'greet', u'agree', u'try', u'convince', u'urges', u'arrive', u'invites', u'talk'])
intersection (1): set([u'stay'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
MEET
golden (19): set([u'satisfy', u'fulfil', u'appease', u'supply', u'quench', u'assuage', u'feed on', u'ply', u'stay', u'provide', u'quell', u'slake', u'cater', u'feed upon', u'fulfill', u'answer', u'meet', u'allay', u'fill'])
predicted (50): set([u'fulfil', u'conform', u'contribute', u'assess', u'effectively', u'appropriate', u'minimum', u'maximize', u'establish', u'incentivize', u'access', u'satisfying', u'raise', u'provide', u'certify', u'utilize', u'increase', u'encourage', u'sustain', u'adapt', u'enhance', u'adequate', u'allocate', u'satisfy', u'enable', u'intend', u'plans', u'demands', u'evaluate', u'deliver', u'maximise', u'upgrade', u'rdas', u'accomplish', u'address', u'optimize', u'comply', u'improve', u'insure', u'necessary', u'prioritize', u'anticipate', u'assure', u'maintain', u'ensure', u'allow', u'demonstrate', u'implement', u'justify', u'fulfill'])
intersection (4): set([u'satisfy', u'fulfil', u'provide', u'fulfill'])
NEW
golden (2): set([u'new', u'raw'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (2): set([u'new', u'unexampled'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (1): set([u'fresh'])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (1): set([u'fresh'])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (3): set([u'new', u'novel', u'fresh'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (1): set([u'fresh'])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (1): set([u'fresh'])
NEW
golden (3): set([u'new', u'novel', u'fresh'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (2): set([u'raw', u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'commonwealth', u'unitary', u'proposed', u'national', u'creation', u'libertarianz', u'nysut', u'itself', u'dyarchy', u'council', u'decrees', u'calling', u'regime', u'parliamentary', u'constitution', u'state', u'hampshire', u'drafting', u'westminster', u'accordingly', u'permanent', u'republic', u'sanjak', u'mszdp', u'rump', u'newly', u'brunswick', u'establishment', u'bicameral', u'reformed', u'unicameral', u'netherland', u'government', u'monarchy', u'transitory', u'free', u'anzus', u'governing', u'constituent', u'zealand', u'corporativist', u'called', u'constitutional', u'reorganized', u'dependency', u'dominion', u'the', u'whole', u'provisional', u'jersey'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (1): set([u'fresh'])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'fresh', u'novel', u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (1): set([u'fresh'])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (3): set([u'new', u'novel', u'fresh'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (50): set([u'stimulator', u'prozak', u'newest', u'rewind', u'demoing', u'zg', u'2002as', u'concept', u'bongwater', u'orleansa', u'aquarium', u'beatlesa', u'goodshirt', u'queensryche', u'hybrid', u'mix', u'sideproject', u'nyhc', u'blur', u'redwalls', u'noisia', u'wicked', u'introducing', u'material', u'hormones', u'lovespirals', u'frukwan', u'brand', u'powertrip', u'cipha', u'motiv8', u'wave', u'maxeen', u'vinyl', u'metamatic', u'nkotb', u'beatallica', u'vasas', u'kid', u'nazxul', u'sebasstian', u'breed', u'fairytale', u'xpressway', u'punk', u'garageland', u'project', u'fresh', u'called', u'soulsavers'])
intersection (0): set([])
NEW
golden (1): set([u'new'])
predicted (49): set([u'concept', u'retrofits', u'prefabrication', u'upgrading', u'refurbish', u'proposal', u'retrofit', u'incorporating', u'constructing', u'adding', u'conversion', u'overhaul', u'enhancements', u'multistorey', u'refurbishment', u'construct', u'midsized', u'add', u'master', u'build', u'retrofitting', u'newly', u'prototype', u'reconfiguring', u'compliment', u'building', u'complete', u'refurbishing', u'designing', u'redesigning', u'reuse', u'modular', u'bsn', u'complementing', u'reconfigure', u'redesign', u'replace', u'featuring', u'pilot', u'revamped', u'installation', u'envisioned', u'asmarta', u'playscapes', u'prototypes', u'passivhaus', u'planned', u'replacement', u'plan'])
intersection (0): set([])
NUMBER
golden (12): set([u'bin', u'license number', u'number', u'registration number', u'pin', u'pin number', u'positive identification', u'personal identification number', u'aba transit number', u'social security number', u'identification number', u'bank identification number'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (79): set([u'numerousness', u'no.', u'radix', u'constant', u'figure', u'prevalence', u'multiplier', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'count', u'dividend', u'linage', u'innumerableness', u'multiplier factor', u'oxidation number', u'folio', u'cardinality', u'fixed-point number', u'addend', u'subtrahend', u'complex number', u'quota', u'co-ordinate', u'biquadrate', u'imaginary number', u'fibonacci number', u'majority', u'definite quantity', u'score', u'cardinal', u'second power', u'divisor', u'factor', u'whole number', u'page number', u'ordinal', u'lineage', u'cube', u'minority', u'oxidation state', u'fewness', u'multiplicand', u'composite number', u'number', u'bulk', u'coordinate', u'arity', u'base', u'countlessness', u'numerosity', u'integer', u'imaginary', u'difference', u'remainder', u'baryon number', u'prime', u'cardinal number', u'pagination', u'preponderance', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'multiplicity', u'complex quantity', u'augend', u'record', u'paging', u'atomic number', u'ordinal number', u'roundness', u'amount', u'fourth power', u'root', u'decimal', u'quotient'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (79): set([u'numerousness', u'no.', u'radix', u'constant', u'figure', u'prevalence', u'multiplier', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'count', u'dividend', u'linage', u'innumerableness', u'multiplier factor', u'oxidation number', u'folio', u'cardinality', u'fixed-point number', u'addend', u'subtrahend', u'complex number', u'quota', u'co-ordinate', u'biquadrate', u'imaginary number', u'fibonacci number', u'majority', u'definite quantity', u'score', u'cardinal', u'second power', u'divisor', u'factor', u'whole number', u'page number', u'ordinal', u'lineage', u'cube', u'minority', u'oxidation state', u'fewness', u'multiplicand', u'composite number', u'number', u'bulk', u'coordinate', u'arity', u'base', u'countlessness', u'numerosity', u'integer', u'imaginary', u'difference', u'remainder', u'baryon number', u'prime', u'cardinal number', u'pagination', u'preponderance', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'multiplicity', u'complex quantity', u'augend', u'record', u'paging', u'atomic number', u'ordinal number', u'roundness', u'amount', u'fourth power', u'root', u'decimal', u'quotient'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (44): set([u'major', u'selection', u'plethora', u'series', u'some', u'number', u'innumerable', u'produced', u'diverse', u'including', u'array', u'slew', u'dozen', u'variety', u'lots', u'amount', u'few', u'written', u'myriad', u'lot', u'various', u'dozens', u'numerous', u'multitude', u'klum', u'bevy', u'mixture', u'string', u'rotating', u'couple', u'handful', u'hundreds', u'flurry', u'scores', u'countless', u'wide', u'several', u'biographies', u'many', u'smattering', u'large', u'these', u'range', u'mediums'])
intersection (2): set([u'amount', u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (12): set([u'bin', u'license number', u'number', u'registration number', u'pin', u'pin number', u'positive identification', u'personal identification number', u'aba transit number', u'social security number', u'identification number', u'bank identification number'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (6): set([u'telephone number', u'signal', u'phone number', u'number', u'sign', u'signaling'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (6): set([u'telephone number', u'signal', u'phone number', u'number', u'sign', u'signaling'])
predicted (44): set([u'major', u'selection', u'plethora', u'series', u'some', u'number', u'innumerable', u'produced', u'diverse', u'including', u'array', u'slew', u'dozen', u'variety', u'lots', u'amount', u'few', u'written', u'myriad', u'lot', u'various', u'dozens', u'numerous', u'multitude', u'klum', u'bevy', u'mixture', u'string', u'rotating', u'couple', u'handful', u'hundreds', u'flurry', u'scores', u'countless', u'wide', u'several', u'biographies', u'many', u'smattering', u'large', u'these', u'range', u'mediums'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (45): set([u'hip', u'ten', u'dance', u'billboards', u'sales', u'pop', u'airplay', u'billboard', u'charted', u'topped', u'arianet', u'charting', u'reached', u'100', u'top', u'aria', u'charts', u'debuted', u'hot', u'heatseekers', u'hop', u'topper', u'consecutive', u'weeks', u'oricon', u'peaking', u'200', u'topping', u'hit', u'mainstream', u'reaching', u'singles', u'atop', u'spot', u'chart', u'billboardas', u'tracks', u'cashbox', u'albums', u'peaked', u'hot100', u'uk', u'ultratop', u'debuting', u'songs'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (6): set([u'telephone number', u'signal', u'phone number', u'number', u'sign', u'signaling'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (6): set([u'telephone number', u'signal', u'phone number', u'number', u'sign', u'signaling'])
predicted (44): set([u'major', u'selection', u'plethora', u'series', u'some', u'number', u'innumerable', u'produced', u'diverse', u'including', u'array', u'slew', u'dozen', u'variety', u'lots', u'amount', u'few', u'written', u'myriad', u'lot', u'various', u'dozens', u'numerous', u'multitude', u'klum', u'bevy', u'mixture', u'string', u'rotating', u'couple', u'handful', u'hundreds', u'flurry', u'scores', u'countless', u'wide', u'several', u'biographies', u'many', u'smattering', u'large', u'these', u'range', u'mediums'])
intersection (1): set([u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (4): set([u'edition', u'issue', u'number', u'periodical'])
predicted (44): set([u'major', u'selection', u'plethora', u'series', u'some', u'number', u'innumerable', u'produced', u'diverse', u'including', u'array', u'slew', u'dozen', u'variety', u'lots', u'amount', u'few', u'written', u'myriad', u'lot', u'various', u'dozens', u'numerous', u'multitude', u'klum', u'bevy', u'mixture', u'string', u'rotating', u'couple', u'handful', u'hundreds', u'flurry', u'scores', u'countless', u'wide', u'several', u'biographies', u'many', u'smattering', u'large', u'these', u'range', u'mediums'])
intersection (1): set([u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (45): set([u'hip', u'ten', u'dance', u'billboards', u'sales', u'pop', u'airplay', u'billboard', u'charted', u'topped', u'arianet', u'charting', u'reached', u'100', u'top', u'aria', u'charts', u'debuted', u'hot', u'heatseekers', u'hop', u'topper', u'consecutive', u'weeks', u'oricon', u'peaking', u'200', u'topping', u'hit', u'mainstream', u'reaching', u'singles', u'atop', u'spot', u'chart', u'billboardas', u'tracks', u'cashbox', u'albums', u'peaked', u'hot100', u'uk', u'ultratop', u'debuting', u'songs'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (5): set([u'majority', u'amount', u'preponderance', u'minority', u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (15): set([u'numerousness', u'preponderance', u'minority', u'figure', u'prevalence', u'fewness', u'multiplicity', u'number', u'countlessness', u'bulk', u'majority', u'amount', u'numerosity', u'roundness', u'innumerableness'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (1): set([u'multiplicity'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'099', u'199', u'318', u'339', u'597', u'741', u'197', u'577', u'988', u'rank', u'132', u'014', u'accumulated', u'252', u'235', u'total', u'119', u'matching', u'best', u'1058', u'172', u'182', u'547', u'082', u'423', u'286', u'568', u'618', u'088', u'206', u'094', u'081', u'tally', u'306', u'084', u'120', u'193', u'049', u'scores', u'aggregate', u'highest', u'adelskalender', u'162', u'000th', u'32', u'list', u'50', u'tallies', u'averages', u'169'])
intersection (0): set([])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (43): set([u'all', u'sizeable', u'plethora', u'number', u'dearth', u'substantial', u'numbers', u'concentration', u'total', u'influxes', u'array', u'dozen', u'huge', u'group', u'few', u'proportion', u'amount', u'mix', u'myriad', u'lot', u'percentage', u'dozens', u'consisting', u'multitude', u'mixture', u'minority', u'combination', u'couple', u'handful', u'spate', u'hundreds', u'sizable', u'significant', u'vast', u'majority', u'preponderance', u'these', u'variety', u'large', u'portion', u'shortage', u'small', u'influx'])
intersection (1): set([u'number'])
NUMBER
golden (65): set([u'no.', u'radix', u'oxidation number', u'addend', u'compound number', u'prime quantity', u'minuend', u'third power', u'square', u'dividend', u'linage', u'constant', u'divisor', u'folio', u'cardinality', u'fixed-point number', u'biquadrate', u'subtrahend', u'complex number', u'co-ordinate', u'augend', u'imaginary number', u'fibonacci number', u'definite quantity', u'score', u'cardinal', u'second power', u'factor', u'whole number', u'page number', u'ordinal', u'prime', u'cube', u'multiplicand', u'quota', u'number', u'cardinal number', u'arity', u'multiplier factor', u'remainder', u'base', u'multiplier', u'integer', u'imaginary', u'difference', u'composite number', u'baryon number', u'lineage', u'oxidation state', u'pagination', u'complex quantity', u'natural number', u'quartic', u'floating-point number', u'biquadratic', u'decimal', u'count', u'record', u'paging', u'atomic number', u'ordinal number', u'coordinate', u'quotient', u'root', u'fourth power'])
predicted (50): set([u'band1', u'parity', u'set', u'sequence', u'calculation', u'permutations', u'rank', u'symbols', u'pair', u'odd', u'sequences', u'counting', u'conversely', u'unordered', u'multiples', u'binary', u'given', u'rows', u'literals', u'significand', u'codewords', u'ordering', u'polyominoes', u'sum', u'zeros', u'therefore', u'pairwise', u'elements', u'terms', u'string', u'form', u'tuple', u'exactly', u'quantiles', u'particular', u'variable', u'multiset', u'unique', u'representing', u'pairs', u'multiplicity', u'minterms', u'value', u'element', u'probabilities', u'edge', u'values', u'sets', u'fixed', u'permutation'])
intersection (0): set([])
PAPER
golden (65): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'wallpaper', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'medium', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'article'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'article'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (7): set([u'essay', u'term paper', u'theme', u'paper', u'report', u'article', u'composition'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (0): set([])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'article'])
PAPER
golden (65): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'wallpaper', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'medium', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (2): set([u'medium', u'paper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (0): set([])
PAPER
golden (7): set([u'publisher', u'newspaper publisher', u'publishing firm', u'publishing house', u'newspaper', u'paper', u'publishing company'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (0): set([])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (65): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'wallpaper', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'medium', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (65): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'wallpaper', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'medium', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (6): set([u'essay', u'term paper', u'theme', u'paper', u'report', u'composition'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'essay'])
PAPER
golden (2): set([u'medium', u'paper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (0): set([])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (7): set([u'essay', u'term paper', u'theme', u'paper', u'report', u'article', u'composition'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (1): set([u'article'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (50): set([u'aluminium', u'milling', u'foundries', u'metal', u'spinning', u'mill', u'tanneries', u'textiles', u'woolen', u'rubber', u'papermaking', u'mills', u'factory', u'textile', u'tin', u'plywood', u'flour', u'tembec', u'manufacture', u'pulpwood', u'manufacturers', u'manufactured', u'coke', u'processing', u'cement', u'manufactories', u'cloth', u'chemicals', u'cookware', u'flatware', u'fertilizer', u'factories', u'producing', u'fabrics', u'steel', u'goods', u'aluminum', u'leather', u'paperboard', u'cutlery', u'commodities', u'ironware', u'chemical', u'lumber', u'products', u'machinery', u'refining', u'consumer', u'pulp', u'smelting'])
intersection (0): set([])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (7): set([u'essay', u'term paper', u'theme', u'paper', u'report', u'article', u'composition'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (0): set([])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (7): set([u'publisher', u'newspaper publisher', u'publishing firm', u'publishing house', u'newspaper', u'paper', u'publishing company'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (1): set([u'newspaper'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (2): set([u'medium', u'paper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (0): set([])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'article'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (0): set([])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (1): set([u'newspaper'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (7): set([u'publisher', u'newspaper publisher', u'publishing firm', u'publishing house', u'newspaper', u'paper', u'publishing company'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (1): set([u'newspaper'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (2): set([u'medium', u'paper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (0): set([])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (17): set([u'essay', u'rag', u'tabloid', u'sheet', u'school newspaper', u'press', u'public press', u'term paper', u'school paper', u'report', u'theme', u'paper', u'daily', u'gazette', u'newspaper', u'article', u'composition'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (6): set([u'tabloid', u'daily', u'newspaper', u'gazette', u'press', u'article'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (0): set([])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'article'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (17): set([u'essay', u'rag', u'tabloid', u'sheet', u'school newspaper', u'press', u'public press', u'term paper', u'school paper', u'report', u'theme', u'paper', u'daily', u'gazette', u'newspaper', u'article', u'composition'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (6): set([u'tabloid', u'daily', u'newspaper', u'gazette', u'press', u'article'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (12): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'newspaper', u'public press', u'paper', u'daily', u'gazette', u'press', u'article'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (50): set([u'aluminium', u'milling', u'foundries', u'metal', u'spinning', u'mill', u'tanneries', u'textiles', u'woolen', u'rubber', u'papermaking', u'mills', u'factory', u'textile', u'tin', u'plywood', u'flour', u'tembec', u'manufacture', u'pulpwood', u'manufacturers', u'manufactured', u'coke', u'processing', u'cement', u'manufactories', u'cloth', u'chemicals', u'cookware', u'flatware', u'fertilizer', u'factories', u'producing', u'fabrics', u'steel', u'goods', u'aluminum', u'leather', u'paperboard', u'cutlery', u'commodities', u'ironware', u'chemical', u'lumber', u'products', u'machinery', u'refining', u'consumer', u'pulp', u'smelting'])
intersection (0): set([])
PAPER
golden (7): set([u'publisher', u'newspaper publisher', u'publishing firm', u'publishing house', u'newspaper', u'paper', u'publishing company'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (1): set([u'newspaper'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (0): set([])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (0): set([])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (1): set([u'newspaper'])
PAPER
golden (7): set([u'publisher', u'newspaper publisher', u'publishing firm', u'publishing house', u'newspaper', u'paper', u'publishing company'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (1): set([u'newspaper'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'article'])
PAPER
golden (2): set([u'article', u'paper'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (1): set([u'article'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (1): set([u'sheet'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (11): set([u'rag', u'tabloid', u'sheet', u'school newspaper', u'school paper', u'press', u'public press', u'paper', u'daily', u'gazette', u'newspaper'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (5): set([u'press', u'newspaper', u'tabloid', u'daily', u'gazette'])
PAPER
golden (6): set([u'essay', u'term paper', u'theme', u'paper', u'report', u'composition'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (0): set([])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (7): set([u'essay', u'term paper', u'theme', u'paper', u'report', u'article', u'composition'])
predicted (49): set([u'seminal', u'mathematical', u'detailed', u'work', u'atheory', u'findings', u'meehl', u'textbook', u'zilsel', u'topic', u'biometrika', u'thesis', u'sternberg', u'sommerfeldas', u'theory', u'dissertation', u'psychology', u'criminological', u'conclusions', u'relativity', u'ideas', u'comments', u'research', u'biosemiotics', u'critical', u'observations', u'prof', u'exhaustive', u'summarizing', u'giss', u'scientific', u'essay', u'algebra', u'aexperimental', u'flyvbjerg', u'article', u'essays', u'treatise', u'study', u'economics', u'thermodynamicist', u'analysis', u'quaternions', u'feynman', u'jeab', u'entitled', u'optics', u'book', u'monograph'])
intersection (2): set([u'essay', u'article'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (64): set([u'graph paper', u'construction paper', u'manifold', u'chad', u'oilpaper', u'manila paper', u'flypaper', u'india paper', u'ticker tape', u'manilla', u'paper', u'filter paper', u'tissue paper', u'carbon', u'parchment', u'tar paper', u'sheet', u'roofing paper', u'tablet', u'composition board', u'wrapping paper', u'manifold paper', u'carbon paper', u'transfer paper', u'greaseproof paper', u'newsprint', u'pad', u'manilla paper', u'paper-mache', u'linen paper', u'tracing paper', u'papier-mache', u'wallpaper', u'pad of paper', u'manila', u'blotting paper', u'blueprint paper', u'drawing paper', u'material', u'art paper', u'score paper', u'confetti', u'music paper', u'cardboard', u'sheet of paper', u'card', u'piece of paper', u'writing paper', u'rice paper', u'crepe', u'blotter', u'computer paper', u'tissue', u'papyrus', u'cartridge paper', u'paper tape', u'linen', u'litmus paper', u'stuff', u'crepe paper', u'newspaper', u'wax paper', u'waste paper', u'paper toweling'])
predicted (49): set([u'copper', u'intaglio', u'backing', u'ink', u'laminating', u'stencils', u'parchment', u'glassine', u'washable', u'canvas', u'uncoated', u'sheet', u'fabric', u'stamp', u'pasted', u'inked', u'plastic', u'paint', u'pen', u'gummed', u'envelopes', u'wax', u'print', u'plates', u'bits', u'pencil', u'inks', u'lacquer', u'brushes', u'hand', u'cloth', u'foil', u'printed', u'sheets', u'pens', u'cardboard', u'paste', u'translucent', u'pencils', u'embossing', u'laminate', u'paperboard', u'boxes', u'yarn', u'bag', u'printing', u'toner', u'glued', u'binders'])
intersection (3): set([u'cardboard', u'sheet', u'parchment'])
PAPER
golden (6): set([u'essay', u'term paper', u'theme', u'paper', u'report', u'composition'])
predicted (46): set([u'advertiser', u'editorially', u'tribune', u'mirror', u'newsletter', u'article', u'newsweek', u'digest', u'weekly', u'tabloid', u'enquirer', u'publication', u'headline', u'pages', u'sunday', u'telegraph', u'gazette', u'mail', u'princetonian', u'morgunblai', u'publishers', u'evening', u'spectator', u'courier', u'guardian', u'journal', u'inquirer', u'aftonbladet', u'broadsheet', u'press', u'news', u'biweekly', u'paperas', u'fortnightly', u'chronicle', u'circulation', u'column', u'newspapers', u'argus', u'daily', u'herald', u'oregonian', u'magazine', u'editorial', u'newspaper', u'bulletin'])
intersection (0): set([])
PART
golden (20): set([u'slice', u'tranche', u'assets', u'allotment', u'way', u'ration', u'share', u'stake', u'dole', u'allocation', u'portion', u'cut', u'split', u'interest', u'dispensation', u'profit sharing', u'part', u'piece', u'percentage', u'allowance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (2): set([u'portion', u'piece'])
PART
golden (43): set([u'residuum', u'tranche', u'point', u'butt', u'share', u'dole', u'relation', u'dispensation', u'unit', u'residue', u'cut', u'linguistic unit', u'subpart', u'basis', u'stake', u'detail', u'member', u'split', u'way', u'percentage', u'language unit', u'interest', u'ration', u'component', u'residual', u'allocation', u'slice', u'rest', u'particular', u'constituent', u'part', u'remainder', u'substance', u'profit sharing', u'assets', u'component part', u'piece', u'item', u'portion', u'base', u'allotment', u'balance', u'allowance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (4): set([u'remainder', u'portion', u'piece', u'component'])
PART
golden (13): set([u'function', u'duty', u'capacity', u'portfolio', u'office', u'second fiddle', u'part', u'stead', u'place', u'lieu', u'position', u'role', u'hat'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (60): set([u'residuum', u'upstairs', u'point', u'fore edge', u'butt', u'rest', u'seat', u'pressing', u'relation', u'constituent', u'limb', u'unit', u'residue', u'member', u'bottleneck', u'linguistic unit', u'hub', u'subpart', u'basis', u'remainder', u'section', u'neck', u'segment', u'detail', u'upstage', u'forte', u'language unit', u'fraction', u'cutout', u'stub', u'toe', u'backbone', u'peen', u'shank', u'object', u'component', u'residual', u'foible', u'part', u'particular', u'bulb', u'bit', u'physical object', u'turnout', u'widening', u'wreckage', u'substance', u'waist', u'spine', u'component part', u'piece', u'element', u'item', u'portion', u'base', u'jetsam', u'appendage', u'foredge', u'balance', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (4): set([u'component', u'portion', u'piece', u'remainder'])
PART
golden (56): set([u'atmosphere', u'intergalactic space', u'shangri-la', u'snake pit', u'house', u'layer', u'sign', u'interplanetary space', u'ionosphere', u'interstellar space', u'radius', u'exterior', u'mansion', u'hell', u'edgeworth-kuiper belt', u'belt', u'mare', u'hellhole', u'zone', u'black hole', u'promised land', u'top', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'side', u'hell on earth', u'nirvana', u'part', u'the pits', u'aerospace', u'vacuum', u'sind', u'vacuity', u'maria', u'county', u'star sign', u'heaven', u'deep space', u'eden', u'sign of the zodiac', u'biosphere', u'inside', u'bottom', u'air', u'papua', u'extremity', u'depth', u'zodiac', u'region', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (37): set([u'residuum', u'duty', u'office', u'point', u'butt', u'rest', u'relation', u'lieu', u'portfolio', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'capacity', u'detail', u'member', u'role', u'language unit', u'place', u'hat', u'function', u'second fiddle', u'component', u'residual', u'part', u'particular', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'stead', u'position', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (56): set([u'atmosphere', u'intergalactic space', u'shangri-la', u'snake pit', u'house', u'layer', u'sign', u'interplanetary space', u'ionosphere', u'interstellar space', u'radius', u'exterior', u'mansion', u'hell', u'edgeworth-kuiper belt', u'belt', u'mare', u'hellhole', u'zone', u'black hole', u'promised land', u'top', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'side', u'hell on earth', u'nirvana', u'part', u'the pits', u'aerospace', u'vacuum', u'sind', u'vacuity', u'maria', u'county', u'star sign', u'heaven', u'deep space', u'eden', u'sign of the zodiac', u'biosphere', u'inside', u'bottom', u'air', u'papua', u'extremity', u'depth', u'zodiac', u'region', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (56): set([u'atmosphere', u'intergalactic space', u'shangri-la', u'snake pit', u'house', u'layer', u'sign', u'interplanetary space', u'ionosphere', u'interstellar space', u'radius', u'exterior', u'mansion', u'hell', u'edgeworth-kuiper belt', u'belt', u'mare', u'hellhole', u'zone', u'black hole', u'promised land', u'top', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'side', u'hell on earth', u'nirvana', u'part', u'the pits', u'aerospace', u'vacuum', u'sind', u'vacuity', u'maria', u'county', u'star sign', u'heaven', u'deep space', u'eden', u'sign of the zodiac', u'biosphere', u'inside', u'bottom', u'air', u'papua', u'extremity', u'depth', u'zodiac', u'region', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (42): set([u'residuum', u'point', u'butt', u'rest', u'relation', u'strip', u'corner', u'nub', u'unit', u'residue', u'member', u'slice', u'linguistic unit', u'subpart', u'basis', u'segment', u'detail', u'stub', u'language unit', u'corpus', u'body part', u'craton', u'fragment', u'component', u'residual', u'lump', u'cutting', u'particular', u'constituent', u'part', u'remainder', u'substance', u'world', u'component part', u'piece', u'thing', u'portion', u'base', u'hunk', u'item', u'acicula', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (4): set([u'remainder', u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (19): set([u'heavy', u'personation', u'theatrical role', u'persona', u'hero', u'baddie', u'ingenue', u'title role', u'enactment', u'characterization', u'character', u'bit part', u'villain', u'part', u'role', u'minor role', u'portrayal', u'heroine', u'name part'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (43): set([u'residuum', u'tranche', u'point', u'butt', u'share', u'dole', u'relation', u'dispensation', u'unit', u'residue', u'cut', u'linguistic unit', u'subpart', u'basis', u'stake', u'detail', u'member', u'split', u'way', u'percentage', u'language unit', u'interest', u'ration', u'component', u'residual', u'allocation', u'slice', u'rest', u'particular', u'constituent', u'part', u'remainder', u'substance', u'profit sharing', u'assets', u'component part', u'piece', u'item', u'portion', u'base', u'allotment', u'balance', u'allowance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (4): set([u'remainder', u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (60): set([u'residuum', u'upstairs', u'point', u'fore edge', u'butt', u'rest', u'seat', u'pressing', u'relation', u'constituent', u'limb', u'unit', u'residue', u'member', u'bottleneck', u'linguistic unit', u'hub', u'subpart', u'basis', u'remainder', u'section', u'neck', u'segment', u'detail', u'upstage', u'forte', u'language unit', u'fraction', u'cutout', u'stub', u'toe', u'backbone', u'peen', u'shank', u'object', u'component', u'residual', u'foible', u'part', u'particular', u'bulb', u'bit', u'physical object', u'turnout', u'widening', u'wreckage', u'substance', u'waist', u'spine', u'component part', u'piece', u'element', u'item', u'portion', u'base', u'jetsam', u'appendage', u'foredge', u'balance', u'heel'])
predicted (50): set([u'within', u'it', u'northernmost', u'proper', u'adjoining', u'in', u'comprises', u'easternmost', u'city', u'touches', u'westernmost', u'smallest', u'northern', u'area', u'encompasses', u'forms', u'parts', u'southwestern', u'location', u'constitutes', u'capital', u'borders', u'encompassed', u'administrative', u'historically', u'bordering', u'straddling', u'southwesternmost', u'northeastern', u'eastern', u'surrounds', u'straddles', u'boundaries', u'southern', u'suburb', u'western', u'included', u'northwesternmost', u'eganville', u'comprised', u'boundary', u'town', u'portions', u'fringe', u'comprising', u'southernmost', u'seat', u'encompassing', u'portion', u'southeastern'])
intersection (2): set([u'portion', u'seat'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (9): set([u'end', u'share', u'endeavour', u'try', u'part', u'attempt', u'contribution', u'effort', u'endeavor'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (56): set([u'atmosphere', u'intergalactic space', u'shangri-la', u'snake pit', u'house', u'layer', u'sign', u'interplanetary space', u'ionosphere', u'interstellar space', u'radius', u'exterior', u'mansion', u'hell', u'edgeworth-kuiper belt', u'belt', u'mare', u'hellhole', u'zone', u'black hole', u'promised land', u'top', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'side', u'hell on earth', u'nirvana', u'part', u'the pits', u'aerospace', u'vacuum', u'sind', u'vacuity', u'maria', u'county', u'star sign', u'heaven', u'deep space', u'eden', u'sign of the zodiac', u'biosphere', u'inside', u'bottom', u'air', u'papua', u'extremity', u'depth', u'zodiac', u'region', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (56): set([u'atmosphere', u'intergalactic space', u'shangri-la', u'snake pit', u'house', u'layer', u'sign', u'interplanetary space', u'ionosphere', u'interstellar space', u'radius', u'exterior', u'mansion', u'hell', u'edgeworth-kuiper belt', u'belt', u'mare', u'hellhole', u'zone', u'black hole', u'promised land', u'top', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'side', u'hell on earth', u'nirvana', u'part', u'the pits', u'aerospace', u'vacuum', u'sind', u'vacuity', u'maria', u'county', u'star sign', u'heaven', u'deep space', u'eden', u'sign of the zodiac', u'biosphere', u'inside', u'bottom', u'air', u'papua', u'extremity', u'depth', u'zodiac', u'region', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (30): set([u'inning', u'concept', u'over', u'period', u'middle', u'final period', u'end', u'chukker', u'construct', u'chukka', u'bout', u'frame', u'round', u'ingredient', u'division', u'factor', u'component', u'game', u'part', u'high point', u'first period', u'half', u'constituent', u'beginning', u'second period', u'conception', u'element', u'turn', u'quarter', u'section'])
predicted (50): set([u'ardennes', u'summer', u'pursuit', u'assembling', u'remnants', u'epehy', u'spring', u'poelcappelle', u'torch', u'scene', u'rest', u'autumn', u'1880a1881', u'chametz', u'battle', u'operation', u'lyndanisse', u'culmination', u'overlord', u'winter', u'legion', u'prelude', u'latter', u'crucial', u'mollwitz', u'hohenfriedberg', u'charge', u'participated', u'grudzidz', u'siege', u'pacification', u'bulk', u'spartakiad', u'stoczek', u'nucleus', u'barbarossa', u'demobilization', u'invasion', u'mounted', u'remainder', u'paiforce', u'great', u'alpenkorps', u'participating', u'connaught', u'relief', u'consequence', u'stages', u'whole', u'result'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (80): set([u'residuum', u'interplanetary space', u'atmosphere', u'bottom', u'exterior', u'snake pit', u'point', u'house', u'particular', u'layer', u'rest', u'sign', u'county', u'mansion', u'radius', u'shangri-la', u'ionosphere', u'hell', u'sind', u'unit', u'belt', u'residue', u'mare', u'hellhole', u'linguistic unit', u'zone', u'black hole', u'promised land', u'top', u'detail', u'member', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'language unit', u'basis', u'depth', u'hell on earth', u'component', u'residual', u'nirvana', u'inside', u'part', u'item', u'the pits', u'aerospace', u'butt', u'constituent', u'edgeworth-kuiper belt', u'zodiac', u'remainder', u'vacuity', u'maria', u'interstellar space', u'star sign', u'heaven', u'substance', u'subpart', u'deep space', u'sign of the zodiac', u'biosphere', u'component part', u'intergalactic space', u'air', u'papua', u'extremity', u'portion', u'base', u'eden', u'region', u'relation', u'vacuum', u'balance', u'side', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'component', u'portion', u'remainder'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (13): set([u'function', u'duty', u'capacity', u'portfolio', u'office', u'second fiddle', u'part', u'stead', u'place', u'lieu', u'position', u'role', u'hat'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (80): set([u'residuum', u'interplanetary space', u'atmosphere', u'bottom', u'exterior', u'snake pit', u'point', u'house', u'particular', u'layer', u'rest', u'sign', u'county', u'mansion', u'radius', u'shangri-la', u'ionosphere', u'hell', u'sind', u'unit', u'belt', u'residue', u'mare', u'hellhole', u'linguistic unit', u'zone', u'black hole', u'promised land', u'top', u'detail', u'member', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'language unit', u'basis', u'depth', u'hell on earth', u'component', u'residual', u'nirvana', u'inside', u'part', u'item', u'the pits', u'aerospace', u'butt', u'constituent', u'edgeworth-kuiper belt', u'zodiac', u'remainder', u'vacuity', u'maria', u'interstellar space', u'star sign', u'heaven', u'substance', u'subpart', u'deep space', u'sign of the zodiac', u'biosphere', u'component part', u'intergalactic space', u'air', u'papua', u'extremity', u'portion', u'base', u'eden', u'region', u'relation', u'vacuum', u'balance', u'side', u'kuiper belt', u'distance'])
predicted (50): set([u'ardennes', u'summer', u'pursuit', u'assembling', u'remnants', u'epehy', u'spring', u'poelcappelle', u'torch', u'scene', u'rest', u'autumn', u'1880a1881', u'chametz', u'battle', u'operation', u'lyndanisse', u'culmination', u'overlord', u'winter', u'legion', u'prelude', u'latter', u'crucial', u'mollwitz', u'hohenfriedberg', u'charge', u'participated', u'grudzidz', u'siege', u'pacification', u'bulk', u'spartakiad', u'stoczek', u'nucleus', u'barbarossa', u'demobilization', u'invasion', u'mounted', u'remainder', u'paiforce', u'great', u'alpenkorps', u'participating', u'connaught', u'relief', u'consequence', u'stages', u'whole', u'result'])
intersection (2): set([u'remainder', u'rest'])
PART
golden (13): set([u'function', u'duty', u'capacity', u'portfolio', u'office', u'second fiddle', u'part', u'stead', u'place', u'lieu', u'position', u'role', u'hat'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (56): set([u'atmosphere', u'intergalactic space', u'shangri-la', u'snake pit', u'house', u'layer', u'sign', u'interplanetary space', u'ionosphere', u'interstellar space', u'radius', u'exterior', u'mansion', u'hell', u'edgeworth-kuiper belt', u'belt', u'mare', u'hellhole', u'zone', u'black hole', u'promised land', u'top', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'side', u'hell on earth', u'nirvana', u'part', u'the pits', u'aerospace', u'vacuum', u'sind', u'vacuity', u'maria', u'county', u'star sign', u'heaven', u'deep space', u'eden', u'sign of the zodiac', u'biosphere', u'inside', u'bottom', u'air', u'papua', u'extremity', u'depth', u'zodiac', u'region', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (40): set([u'upstairs', u'fore edge', u'seat', u'pressing', u'bulb', u'limb', u'stub', u'physical object', u'shank', u'turnout', u'section', u'waist', u'upstage', u'forte', u'fraction', u'cutout', u'toe', u'backbone', u'peen', u'hub', u'object', u'component', u'foible', u'part', u'butt', u'constituent', u'bit', u'bottleneck', u'segment', u'widening', u'wreckage', u'neck', u'spine', u'element', u'portion', u'jetsam', u'appendage', u'foredge', u'piece', u'heel'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'portion', u'piece', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (56): set([u'atmosphere', u'intergalactic space', u'shangri-la', u'snake pit', u'house', u'layer', u'sign', u'interplanetary space', u'ionosphere', u'interstellar space', u'radius', u'exterior', u'mansion', u'hell', u'edgeworth-kuiper belt', u'belt', u'mare', u'hellhole', u'zone', u'black hole', u'promised land', u'top', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'side', u'hell on earth', u'nirvana', u'part', u'the pits', u'aerospace', u'vacuum', u'sind', u'vacuity', u'maria', u'county', u'star sign', u'heaven', u'deep space', u'eden', u'sign of the zodiac', u'biosphere', u'inside', u'bottom', u'air', u'papua', u'extremity', u'depth', u'zodiac', u'region', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (25): set([u'residuum', u'point', u'particular', u'rest', u'relation', u'unit', u'residue', u'linguistic unit', u'subpart', u'basis', u'detail', u'member', u'language unit', u'component', u'residual', u'part', u'butt', u'constituent', u'remainder', u'substance', u'component part', u'item', u'portion', u'base', u'balance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'remainder', u'portion', u'component'])
PART
golden (80): set([u'residuum', u'interplanetary space', u'atmosphere', u'bottom', u'exterior', u'snake pit', u'point', u'house', u'particular', u'layer', u'rest', u'sign', u'county', u'mansion', u'radius', u'shangri-la', u'ionosphere', u'hell', u'sind', u'unit', u'belt', u'residue', u'mare', u'hellhole', u'linguistic unit', u'zone', u'black hole', u'promised land', u'top', u'detail', u'member', u'outside', u'heliosphere', u'location', u'paradise', u'interior', u'inferno', u'planetary house', u'language unit', u'basis', u'depth', u'hell on earth', u'component', u'residual', u'nirvana', u'inside', u'part', u'item', u'the pits', u'aerospace', u'butt', u'constituent', u'edgeworth-kuiper belt', u'zodiac', u'remainder', u'vacuity', u'maria', u'interstellar space', u'star sign', u'heaven', u'substance', u'subpart', u'deep space', u'sign of the zodiac', u'biosphere', u'component part', u'intergalactic space', u'air', u'papua', u'extremity', u'portion', u'base', u'eden', u'region', u'relation', u'vacuum', u'balance', u'side', u'kuiper belt', u'distance'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (3): set([u'component', u'portion', u'remainder'])
PART
golden (13): set([u'function', u'duty', u'capacity', u'portfolio', u'office', u'second fiddle', u'part', u'stead', u'place', u'lieu', u'position', u'role', u'hat'])
predicted (49): set([u'subset', u'originator', u'hallmark', u'regardless', u'continuation', u'integral', u'comprised', u'course', u'result', u'aspect', u'incorporation', u'demonstration', u'description', u'culmination', u'indicator', u'remainder', u'forerunner', u'theme', u'sorts', u'type', u'consisting', u'reminder', u'sort', u'determinant', u'reworking', u'form', u'component', u'choice', u'centerpiece', u'devoid', u'indicative', u'representative', u'recap', u'portions', u'epitome', u'beginning', u'cornerstone', u'bulk', u'kind', u'hallmarks', u'outgrowth', u'facet', u'portion', u'byproduct', u'consequence', u'representation', u'piece', u'whole', u'typical'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (8): set([u'kinfolk', u'family', u'people', u'family line', u'kinsfolk', u'sept', u'folk', u'phratry'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (0): set([])
PEOPLE
golden (23): set([u'people', u'laity', u'arcado-cyprians', u'dorian', u'electorate', u'ionian', u'group', u'masses', u'aeolian', u'followers', u'multitude', u'country people', u'temporalty', u'citizenry', u'countryfolk', u'achaean', u'governed', u'audience', u'mass', u'following', u'hoi polloi', u'grouping', u'the great unwashed'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'indians', u'ibans', u'arabs', u'eurasians', u'immigrant', u'maasai', u'amerindians', u'tharus', u'native', u'mestizos', u'expatriates', u'descent', u'descendents', u'konkanis', u'inhabitants', u'descendants', u'ivatans', u'peoples', u'romanies', u'europeans', u'villagers', u'speaking', u'emigrants', u'mizos', u'nomads', u'populations', u'kurnai', u'igbo', u'arawak', u'mijikenda', u'tribespeople', u'indigenous', u'groups', u'ethnic', u'communities', u'diaspora', u'gitxon', u'migrants', u'ethnicities', u'refugees', u'tribal', u'immigrants', u'kalenjin', u'nigerians', u'tamils', u'residents', u'fulbe', u'settlers', u'nomadic', u'natives'])
intersection (1): set([u'peoples'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (49): set([u'jews', u'450', u'civilians', u'700', u'roughly', u'115', u'40', u'homeless', u'250', u'estimated', u'80', u'600', u'approximately', u'180', u'650', u'170', u'500', u'2500', u'200', u'spectators', u'140', u'300', u'numbering', u'4500', u'million', u'births', u'60', u'120', u'persons', u'000', u'nearly', u'70', u'000people', u'7000', u'100', u'160', u'homes', u'900', u'visitors', u'wsws', u'270', u'immigrants', u'50', u'individuals', u'350', u'residents', u'800', u'refugees', u'240'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'indians', u'ibans', u'arabs', u'eurasians', u'immigrant', u'maasai', u'amerindians', u'tharus', u'native', u'mestizos', u'expatriates', u'descent', u'descendents', u'konkanis', u'inhabitants', u'descendants', u'ivatans', u'peoples', u'romanies', u'europeans', u'villagers', u'speaking', u'emigrants', u'mizos', u'nomads', u'populations', u'kurnai', u'igbo', u'arawak', u'mijikenda', u'tribespeople', u'indigenous', u'groups', u'ethnic', u'communities', u'diaspora', u'gitxon', u'migrants', u'ethnicities', u'refugees', u'tribal', u'immigrants', u'kalenjin', u'nigerians', u'tamils', u'residents', u'fulbe', u'settlers', u'nomadic', u'natives'])
intersection (1): set([u'peoples'])
PEOPLE
golden (13): set([u'group', u'temporalty', u'people', u'masses', u'laity', u'audience', u'followers', u'following', u'hoi polloi', u'grouping', u'mass', u'multitude', u'the great unwashed'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (13): set([u'country people', u'group', u'countryfolk', u'achaean', u'people', u'governed', u'arcado-cyprians', u'aeolian', u'dorian', u'citizenry', u'electorate', u'ionian', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (0): set([])
PEOPLE
golden (90): set([u'disabled', u'ancients', u'group', u'social class', u'rich', u'stratum', u'folks', u'unemployed', u'nation', u'pocket', u'peanut gallery', u'coevals', u'world', u'enemy', u'poor people', u'lost', u'countryfolk', u'clientele', u'unemployed people', u'developmentally challenged', u'tradespeople', u'grouping', u'mentally retarded', u'brave', u'people', u'generation', u'deaf', u'dead', u'dorian', u'migration', u'free people', u'folk', u'living', u'populace', u'age bracket', u'socio-economic class', u'public', u'country people', u'business', u'free', u'nationality', u'enlightened', u'patronage', u'baffled', u'cautious', u'achaean', u'country', u'episcopate', u'initiate', u'episcopacy', u'retarded', u'blind', u'rank and file', u'smart money', u'electorate', u'business people', u'class', u'doomed', u'discomfited', u'womankind', u'citizenry', u'population', u'unconfessed', u'retreated', u'businesspeople', u'homebound', u'handicapped', u'uninitiate', u'damned', u'rich people', u'chosen people', u'defeated', u'arcado-cyprians', u'ionian', u'cohort', u'common people', u'sick', u'peoples', u'contemporaries', u'poor', u'age group', u'maimed', u'blood', u'timid', u'lobby', u'land', u'governed', u'network army', u'aeolian', u'wounded'])
predicted (50): set([u'indians', u'ibans', u'arabs', u'eurasians', u'immigrant', u'maasai', u'amerindians', u'tharus', u'native', u'mestizos', u'expatriates', u'descent', u'descendents', u'konkanis', u'inhabitants', u'descendants', u'ivatans', u'peoples', u'romanies', u'europeans', u'villagers', u'speaking', u'emigrants', u'mizos', u'nomads', u'populations', u'kurnai', u'igbo', u'arawak', u'mijikenda', u'tribespeople', u'indigenous', u'groups', u'ethnic', u'communities', u'diaspora', u'gitxon', u'migrants', u'ethnicities', u'refugees', u'tribal', u'immigrants', u'kalenjin', u'nigerians', u'tamils', u'residents', u'fulbe', u'settlers', u'nomadic', u'natives'])
intersection (1): set([u'peoples'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'indians', u'ibans', u'arabs', u'eurasians', u'immigrant', u'maasai', u'amerindians', u'tharus', u'native', u'mestizos', u'expatriates', u'descent', u'descendents', u'konkanis', u'inhabitants', u'descendants', u'ivatans', u'peoples', u'romanies', u'europeans', u'villagers', u'speaking', u'emigrants', u'mizos', u'nomads', u'populations', u'kurnai', u'igbo', u'arawak', u'mijikenda', u'tribespeople', u'indigenous', u'groups', u'ethnic', u'communities', u'diaspora', u'gitxon', u'migrants', u'ethnicities', u'refugees', u'tribal', u'immigrants', u'kalenjin', u'nigerians', u'tamils', u'residents', u'fulbe', u'settlers', u'nomadic', u'natives'])
intersection (1): set([u'peoples'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (49): set([u'jews', u'450', u'civilians', u'700', u'roughly', u'115', u'40', u'homeless', u'250', u'estimated', u'80', u'600', u'approximately', u'180', u'650', u'170', u'500', u'2500', u'200', u'spectators', u'140', u'300', u'numbering', u'4500', u'million', u'births', u'60', u'120', u'persons', u'000', u'nearly', u'70', u'000people', u'7000', u'100', u'160', u'homes', u'900', u'visitors', u'wsws', u'270', u'immigrants', u'50', u'individuals', u'350', u'residents', u'800', u'refugees', u'240'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (13): set([u'country people', u'group', u'countryfolk', u'achaean', u'people', u'governed', u'arcado-cyprians', u'aeolian', u'dorian', u'citizenry', u'electorate', u'ionian', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (49): set([u'jews', u'450', u'civilians', u'700', u'roughly', u'115', u'40', u'homeless', u'250', u'estimated', u'80', u'600', u'approximately', u'180', u'650', u'170', u'500', u'2500', u'200', u'spectators', u'140', u'300', u'numbering', u'4500', u'million', u'births', u'60', u'120', u'persons', u'000', u'nearly', u'70', u'000people', u'7000', u'100', u'160', u'homes', u'900', u'visitors', u'wsws', u'270', u'immigrants', u'50', u'individuals', u'350', u'residents', u'800', u'refugees', u'240'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'indians', u'ibans', u'arabs', u'eurasians', u'immigrant', u'maasai', u'amerindians', u'tharus', u'native', u'mestizos', u'expatriates', u'descent', u'descendents', u'konkanis', u'inhabitants', u'descendants', u'ivatans', u'peoples', u'romanies', u'europeans', u'villagers', u'speaking', u'emigrants', u'mizos', u'nomads', u'populations', u'kurnai', u'igbo', u'arawak', u'mijikenda', u'tribespeople', u'indigenous', u'groups', u'ethnic', u'communities', u'diaspora', u'gitxon', u'migrants', u'ethnicities', u'refugees', u'tribal', u'immigrants', u'kalenjin', u'nigerians', u'tamils', u'residents', u'fulbe', u'settlers', u'nomadic', u'natives'])
intersection (1): set([u'peoples'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (49): set([u'jews', u'450', u'civilians', u'700', u'roughly', u'115', u'40', u'homeless', u'250', u'estimated', u'80', u'600', u'approximately', u'180', u'650', u'170', u'500', u'2500', u'200', u'spectators', u'140', u'300', u'numbering', u'4500', u'million', u'births', u'60', u'120', u'persons', u'000', u'nearly', u'70', u'000people', u'7000', u'100', u'160', u'homes', u'900', u'visitors', u'wsws', u'270', u'immigrants', u'50', u'individuals', u'350', u'residents', u'800', u'refugees', u'240'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (49): set([u'jews', u'450', u'civilians', u'700', u'roughly', u'115', u'40', u'homeless', u'250', u'estimated', u'80', u'600', u'approximately', u'180', u'650', u'170', u'500', u'2500', u'200', u'spectators', u'140', u'300', u'numbering', u'4500', u'million', u'births', u'60', u'120', u'persons', u'000', u'nearly', u'70', u'000people', u'7000', u'100', u'160', u'homes', u'900', u'visitors', u'wsws', u'270', u'immigrants', u'50', u'individuals', u'350', u'residents', u'800', u'refugees', u'240'])
intersection (0): set([])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
PEOPLE
golden (80): set([u'blind', u'rich people', u'chosen people', u'brave', u'poor', u'people', u'generation', u'blood', u'deaf', u'defeated', u'common people', u'disabled', u'episcopacy', u'rank and file', u'migration', u'ancients', u'free people', u'episcopate', u'enlightened', u'folk', u'business people', u'handicapped', u'group', u'populace', u'social class', u'lobby', u'lost', u'sick', u'age bracket', u'stratum', u'folks', u'socio-economic class', u'womankind', u'unemployed', u'contemporaries', u'mentally retarded', u'age group', u'maimed', u'network army', u'rich', u'business', u'cohort', u'doomed', u'peoples', u'free', u'nation', u'pocket', u'discomfited', u'cautious', u'living', u'dead', u'peanut gallery', u'coevals', u'world', u'nationality', u'baffled', u'timid', u'class', u'population', u'patronage', u'enemy', u'land', u'unconfessed', u'poor people', u'retreated', u'country', u'clientele', u'businesspeople', u'homebound', u'public', u'unemployed people', u'initiate', u'developmentally challenged', u'uninitiate', u'retarded', u'tradespeople', u'wounded', u'damned', u'smart money', u'grouping'])
predicted (50): set([u'homosexuals', u'dont', u'feel', u'celebrities', u'teenagers', u'young', u'minds', u'want', u'children', u'canadians', u'mitsuo', u'readers', u'things', u'campers', u'companions', u'fans', u'ourselves', u'strangers', u'idiots', u'behave', u'actors', u'those', u'babies', u'therapists', u'folks', u'themselves', u'dogs', u'we', u'men', u'jobs', u'theyare', u'elders', u'who', u'boys', u'ones', u'lives', u'they', u'others', u'yourself', u'viewers', u'women', u'kids', u'animals', u'citizens', u'us', u'patients', u'teachers', u'participants', u'gollancz', u'think'])
intersection (1): set([u'folks'])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'misfortunate', u'pathetic', u'piteous', u'miserable', u'pitiable', u'pitiful', u'hapless'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (2): set([u'miserable', u'pitiful'])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'misfortunate', u'pathetic', u'piteous', u'miserable', u'pitiable', u'pitiful', u'hapless'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (1): set([u'inadequate'])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (2): set([u'miserable', u'pitiful'])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (1): set([u'inadequate'])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (1): set([u'inadequate'])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (1): set([u'inadequate'])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (1): set([u'inadequate'])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (2): set([u'miserable', u'pitiful'])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (49): set([u'criticism', u'unsatisfactory', u'shoddy', u'budgetary', u'durability', u'inadequate', u'lack', u'sales', u'dearth', u'disappointing', u'inexperience', u'unavailability', u'reliability', u'unfavorable', u'publicity', u'seaworthiness', u'overruns', u'sheer', u'slow', u'lackluster', u'delays', u'negative', u'hampered', u'adverse', u'unreliability', u'costs', u'deteriorating', u'sluggish', u'inefficiency', u'drawbacks', u'partly', u'problems', u'visibility', u'dismal', u'despite', u'unreliable', u'overwhelming', u'condition', u'handling', u'technical', u'serviceability', u'bad', u'deficiencies', u'ruggedness', u'reasonable', u'logistical', u'substandard', u'reduced', u'constraints'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (2): set([u'miserable', u'pitiful'])
POOR
golden (3): set([u'poor', u'inadequate', u'short'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'suspension', u'woes', u'shaky', u'niggling', u'setback', u'hamstring', u'recovering', u'mild', u'trophyless', u'inconsistent', u'woewodin', u'2006a07', u'lacklustre', u'injuries', u'blow', u'decline', u'lackluster', u'decent', u'promisingly', u'start', u'declining', u'ankle', u'2005a06', u'struggling', u'injury', u'good', u'cartilage', u'slump', u'however', u'disastrous', u'dismal', u'struggle', u'despite', u'improving', u'knee', u'seaon', u'suffered', u'inconsistency', u'shoulder', u'disappointing', u'unfortunately', u'surprising', u'nevertheless', u'drop', u'diminished', u'midtable', u'disappointment', u'fitness', u'serious', u'groin'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (2): set([u'miserable', u'pitiful'])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'localised', u'particularly', u'unhealthy', u'inadequate', u'consistent', u'unacceptable', u'excessively', u'infiltration', u'conversely', u'dryness', u'retention', u'disturbance', u'choking', u'moderately', u'intense', u'thinning', u'potentially', u'therefore', u'soil', u'erosive', u'optimal', u'adequate', u'tolerance', u'tolerable', u'minimal', u'risks', u'increased', u'infrequent', u'problems', u'conditions', u'poorer', u'abrasion', u'rapid', u'low', u'insufficient', u'drought', u'potential', u'extreme', u'loss', u'stress', u'improved', u'especially', u'erosion', u'prolonged', u'significantly', u'undesirable', u'deterioration', u'nutrient', u'balance', u'reduced'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (2): set([u'miserable', u'pitiful'])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (1): set([u'poor'])
predicted (48): set([u'landlords', u'youths', u'citizens', u'labouring', u'skilled', u'migrant', u'landless', u'homeless', u'jobs', u'wages', u'widows', u'employment', u'children', u'indigent', u'blacks', u'peasants', u'needy', u'destitute', u'workers', u'poorest', u'opportunities', u'labor', u'unskilled', u'vulnerable', u'livelihoods', u'impoverished', u'conditions', u'underprivileged', u'families', u'unemployed', u'income', u'farmers', u'poorer', u'disadvantaged', u'farmworkers', u'wealthier', u'wealthy', u'livelihood', u'landowners', u'migrants', u'orphans', u'incomes', u'labourers', u'peasant', u'underserved', u'affected', u'peasantry', u'housing'])
intersection (0): set([])
POOR
golden (9): set([u'poor', u'wretched', u'pathetic', u'pitiable', u'piteous', u'miserable', u'misfortunate', u'pitiful', u'hapless'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (2): set([u'miserable', u'pitiful'])
POOR
golden (1): set([u'poor'])
predicted (50): set([u'beautiful', u'crazy', u'bad', u'sweet', u'sad', u'preacher', u'sickly', u'good', u'homeless', u'miserable', u'whore', u'shopkeeper', u'happy', u'needy', u'decent', u'hetty', u'gentleman', u'young', u'housewife', u'teenager', u'sick', u'housemaid', u'pitiful', u'handsome', u'privileged', u'loving', u'lazy', u'lonely', u'rich', u'very', u'feisty', u'carefree', u'modest', u'wealthy', u'dutiful', u'kid', u'boy', u'about', u'impoverished', u'gypsy', u'tateh', u'humble', u'quiet', u'xenia', u'peasant', u'man', u'spoiled', u'guy', u'pretty', u'dream'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (58): set([u'control', u'effectuality', u'acquirement', u'intelligence', u'jurisdiction', u'influence', u'module', u'powerfulness', u'mental ability', u'aptitude', u'skill', u'quality', u'puissance', u'strength', u'capacity', u'knowledge', u'disposal', u'creativity', u'mental faculty', u'effectualness', u'originality', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'ability', u'power', u'veto', u'bilingualism', u'hand', u'repellant', u'attainment', u'preponderance', u'know-how', u'legal power', u'irresistibility', u'irresistibleness', u'interestingness', u'creative thinking', u'persuasiveness', u'potency', u'effectivity', u'valency', u'science', u'accomplishment', u'throttlehold', u'superior skill', u'stranglehold', u'creativeness', u'leadership', u'repellent', u'chokehold', u'cognition', u'valence', u'faculty', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (3): set([u'strength', u'ability', u'potency'])
POWER
golden (34): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'mightiness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'might', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'sway', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (21): set([u'commonwealth', u'moloch', u'hegemon', u'land', u'force', u'power', u'causal agency', u'cause', u'country', u'steamroller', u'influence', u'body politic', u'nation', u'state', u'major power', u'juggernaut', u'res publica', u'world power', u'great power', u'causal agent', u'superpower'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (13): set([u'commonwealth', u'hegemon', u'land', u'power', u'country', u'world power', u'body politic', u'nation', u'state', u'major power', u'res publica', u'great power', u'superpower'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (0): set([])
POWER
golden (20): set([u'moloch', u'king', u'tycoon', u'big businessman', u'magnate', u'baron', u'power', u'causal agency', u'cause', u'top executive', u'steamroller', u'influence', u'oil tycoon', u'mogul', u'juggernaut', u'man of affairs', u'businessman', u'force', u'causal agent', u'business leader'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (13): set([u'commonwealth', u'hegemon', u'land', u'power', u'country', u'world power', u'body politic', u'nation', u'state', u'major power', u'res publica', u'great power', u'superpower'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (34): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'mightiness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'might', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'sway', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (3): set([u'control', u'sway', u'influence'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (0): set([])
POWER
golden (7): set([u'logarithm', u'index', u'exponent', u'power', u'log', u'mathematical notation', u'degree'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (3): set([u'control', u'sway', u'influence'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (31): set([u'acquirement', u'office', u'intelligence', u'war power', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'state', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'executive clemency', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (3): set([u'control', u'sway', u'influence'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (0): set([])
POWER
golden (30): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'mightiness', u'aptitude', u'skill', u'strength', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'might', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'ability'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (58): set([u'control', u'effectuality', u'acquirement', u'intelligence', u'jurisdiction', u'influence', u'module', u'powerfulness', u'mental ability', u'aptitude', u'skill', u'quality', u'puissance', u'strength', u'capacity', u'knowledge', u'disposal', u'creativity', u'mental faculty', u'effectualness', u'originality', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'ability', u'power', u'veto', u'bilingualism', u'hand', u'repellant', u'attainment', u'preponderance', u'know-how', u'legal power', u'irresistibility', u'irresistibleness', u'interestingness', u'creative thinking', u'persuasiveness', u'potency', u'effectivity', u'valency', u'science', u'accomplishment', u'throttlehold', u'superior skill', u'stranglehold', u'creativeness', u'leadership', u'repellent', u'chokehold', u'cognition', u'valence', u'faculty', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (3): set([u'strength', u'ability', u'potency'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (0): set([])
POWER
golden (31): set([u'acquirement', u'office', u'intelligence', u'war power', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'state', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'executive clemency', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (13): set([u'commonwealth', u'hegemon', u'land', u'power', u'country', u'world power', u'body politic', u'nation', u'state', u'major power', u'res publica', u'great power', u'superpower'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (7): set([u'logarithm', u'index', u'exponent', u'power', u'log', u'mathematical notation', u'degree'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (0): set([])
POWER
golden (9): set([u'moloch', u'causal agency', u'force', u'power', u'cause', u'steamroller', u'influence', u'juggernaut', u'causal agent'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (3): set([u'control', u'sway', u'influence'])
POWER
golden (58): set([u'control', u'effectuality', u'acquirement', u'intelligence', u'jurisdiction', u'influence', u'module', u'powerfulness', u'mental ability', u'aptitude', u'skill', u'quality', u'puissance', u'strength', u'capacity', u'knowledge', u'disposal', u'creativity', u'mental faculty', u'effectualness', u'originality', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'ability', u'power', u'veto', u'bilingualism', u'hand', u'repellant', u'attainment', u'preponderance', u'know-how', u'legal power', u'irresistibility', u'irresistibleness', u'interestingness', u'creative thinking', u'persuasiveness', u'potency', u'effectivity', u'valency', u'science', u'accomplishment', u'throttlehold', u'superior skill', u'stranglehold', u'creativeness', u'leadership', u'repellent', u'chokehold', u'cognition', u'valence', u'faculty', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (3): set([u'strength', u'ability', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (3): set([u'control', u'sway', u'influence'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (3): set([u'control', u'sway', u'influence'])
POWER
golden (58): set([u'control', u'effectuality', u'acquirement', u'intelligence', u'jurisdiction', u'influence', u'module', u'powerfulness', u'mental ability', u'aptitude', u'skill', u'quality', u'puissance', u'strength', u'capacity', u'knowledge', u'disposal', u'creativity', u'mental faculty', u'effectualness', u'originality', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'ability', u'power', u'veto', u'bilingualism', u'hand', u'repellant', u'attainment', u'preponderance', u'know-how', u'legal power', u'irresistibility', u'irresistibleness', u'interestingness', u'creative thinking', u'persuasiveness', u'potency', u'effectivity', u'valency', u'science', u'accomplishment', u'throttlehold', u'superior skill', u'stranglehold', u'creativeness', u'leadership', u'repellent', u'chokehold', u'cognition', u'valence', u'faculty', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (4): set([u'control', u'sway', u'leadership', u'influence'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (13): set([u'commonwealth', u'hegemon', u'land', u'power', u'country', u'world power', u'body politic', u'nation', u'state', u'major power', u'res publica', u'great power', u'superpower'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (60): set([u'control', u'effectuality', u'acquirement', u'intelligence', u'jurisdiction', u'influence', u'module', u'powerfulness', u'mental ability', u'mightiness', u'aptitude', u'skill', u'quality', u'puissance', u'strength', u'capacity', u'knowledge', u'disposal', u'creativity', u'mental faculty', u'effectualness', u'originality', u'discretion', u'interest', u'free will', u'effectiveness', u'might', u'ability', u'power', u'veto', u'bilingualism', u'hand', u'repellant', u'attainment', u'preponderance', u'know-how', u'legal power', u'irresistibility', u'irresistibleness', u'interestingness', u'creative thinking', u'science', u'persuasiveness', u'potency', u'effectivity', u'valency', u'sway', u'accomplishment', u'throttlehold', u'superior skill', u'stranglehold', u'creativeness', u'leadership', u'repellent', u'chokehold', u'cognition', u'valence', u'faculty', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (3): set([u'strength', u'ability', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (1): set([u'capacity'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (1): set([u'leadership'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (7): set([u'logarithm', u'index', u'exponent', u'power', u'log', u'mathematical notation', u'degree'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (34): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'mightiness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'might', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'sway', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (1): set([u'ability'])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (0): set([])
POWER
golden (6): set([u'power', u'wattage', u'electrical power', u'physical phenomenon', u'waterpower', u'electric power'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (0): set([])
POWER
golden (27): set([u'acquirement', u'intelligence', u'module', u'mental ability', u'aptitude', u'skill', u'capacity', u'knowledge', u'creativity', u'mental faculty', u'originality', u'ability', u'power', u'bilingualism', u'hand', u'attainment', u'leadership', u'know-how', u'faculty', u'creative thinking', u'science', u'accomplishment', u'superior skill', u'creativeness', u'cognition', u'acquisition', u'noesis'])
predicted (50): set([u'load', u'ac', u'hrsgs', u'supply', u'battery', u'inverters', u'torque', u'flywheel', u'volt', u'cost', u'voltage', u'motor', u'turbine', u'speed', u'transformer', u'400hz', u'capacity', u'solenoids', u'generator', u'rpm', u'cooling', u'current', u'reduction', u'nominal', u'performance', u'boost', u'charging', u'engine', u'transformers', u'increased', u'motors', u'dc', u'voltages', u'efficiency', u'igbt', u'operating', u'gain', u'supplies', u'variable', u'hrsg', u'converter', u'compressor', u'induction', u'sofc', u'idle', u'ignition', u'compressors', u'output', u'speeds', u'microturbine'])
intersection (1): set([u'capacity'])
POWER
golden (5): set([u'executive clemency', u'war power', u'power', u'office', u'state'])
predicted (50): set([u'control', u'consolidate', u'consolidated', u'influence', u'reassert', u'authority', u'reasserted', u'effectively', u'itself', u'governance', u'consolidating', u'factionalism', u'absolute', u'despotic', u'preeminence', u'ambitions', u'minority', u'support', u'political', u'overthrowing', u'junta', u'accordingly', u'nominal', u'autocratic', u'sway', u'dominance', u'hegemony', u'bureaucracy', u'dictatorial', u'faction', u'legitimacy', u'thus', u'loyalty', u'however', u'assert', u'domination', u'monarchic', u'centralized', u'absolutist', u'patronage', u'autocracy', u'rulers', u'monarchical', u'nonetheless', u'rule', u'autocratically', u'leadership', u'unchallenged', u'restoring', u'ascendancy'])
intersection (0): set([])
POWER
golden (13): set([u'commonwealth', u'hegemon', u'land', u'power', u'country', u'world power', u'body politic', u'nation', u'state', u'major power', u'res publica', u'great power', u'superpower'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (0): set([])
POWER
golden (32): set([u'control', u'effectuality', u'jurisdiction', u'influence', u'powerfulness', u'quality', u'puissance', u'strength', u'disposal', u'effectualness', u'interestingness', u'discretion', u'interest', u'free will', u'effectiveness', u'sway', u'power', u'veto', u'repellant', u'potency', u'legal power', u'irresistibleness', u'persuasiveness', u'preponderance', u'effectivity', u'valency', u'throttlehold', u'irresistibility', u'stranglehold', u'repellent', u'valence', u'chokehold'])
predicted (50): set([u'godlike', u'abilities', u'magically', u'absorbing', u'energy', u'demon', u'grants', u'demons', u'magics', u'telekinesis', u'talisman', u'godhood', u'strength', u'psionic', u'destiny', u'granting', u'energies', u'psychic', u'chaos', u'willpower', u'immortality', u'master', u'invisibility', u'shapeshifting', u'weakness', u'humanity', u'mystical', u'ability', u'absorb', u'spirits', u'darkness', u'healing', u'illusionary', u'absorbs', u'spark', u'possesses', u'spirit', u'possess', u'possessing', u'potency', u'magic', u'summoning', u'elemental', u'magical', u'wielder', u'ego', u'psynergy', u'powers', u'invulnerability', u'mankind'])
intersection (2): set([u'strength', u'potency'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (9): set([u'read', u'scry', u'anticipate', u'predict', u'forebode', u'foretell', u'call', u'promise', u'prognosticate'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (11): set([u'audit', u'prepare', u'read', u'study', u'practice', u'train', u'take', u'drill', u'learn', u'practise', u'exercise'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'replied', u'letters', u'addresses', u'deneen', u'huie', u'ghostwritten', u'quotes', u'reads', u'suskind', u'penned', u'delivered', u'describing', u'wnd', u'headline', u'bugliosi', u'comments', u'writing', u'uttered', u'summarised', u'kickham', u'transcribed', u'address', u'isikoff', u'explains', u'email', u'told', u'postscript', u'complaint', u'foreword', u'typed', u'memo', u'obituaries', u'mailed', u'summarized', u'drapier', u'stossel', u'retraction', u'remark', u'presented', u'quoting', u'recounted', u'bruccoli', u'kuralt', u'testimony', u'aloud', u'mentions', u'footnotes', u'lupoff', u'notes', u'wrote'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (7): set([u'misread', u'misinterpret', u'read', u'see', u'take', u'interpret', u'construe'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (1): set([u'say'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'replied', u'letters', u'addresses', u'deneen', u'huie', u'ghostwritten', u'quotes', u'reads', u'suskind', u'penned', u'delivered', u'describing', u'wnd', u'headline', u'bugliosi', u'comments', u'writing', u'uttered', u'summarised', u'kickham', u'transcribed', u'address', u'isikoff', u'explains', u'email', u'told', u'postscript', u'complaint', u'foreword', u'typed', u'memo', u'obituaries', u'mailed', u'summarized', u'drapier', u'stossel', u'retraction', u'remark', u'presented', u'quoting', u'recounted', u'bruccoli', u'kuralt', u'testimony', u'aloud', u'mentions', u'footnotes', u'lupoff', u'notes', u'wrote'])
intersection (0): set([])
READ
golden (7): set([u'misread', u'misinterpret', u'read', u'see', u'take', u'interpret', u'construe'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (1): set([u'see'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (7): set([u'misread', u'misinterpret', u'read', u'see', u'take', u'interpret', u'construe'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (6): set([u'misread', u'scan', u'read', u'see', u'interpret', u'construe'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (7): set([u'misread', u'misinterpret', u'read', u'see', u'take', u'interpret', u'construe'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (4): set([u'read', u'translate', u'understand', u'interpret'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (1): set([u'understand'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (7): set([u'misread', u'misinterpret', u'read', u'see', u'take', u'interpret', u'construe'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (1): set([u'see'])
READ
golden (18): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'understand', u'construe', u'skim over', u'anagram', u'skim', u'translate', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (3): set([u'see', u'understand', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'replied', u'letters', u'addresses', u'deneen', u'huie', u'ghostwritten', u'quotes', u'reads', u'suskind', u'penned', u'delivered', u'describing', u'wnd', u'headline', u'bugliosi', u'comments', u'writing', u'uttered', u'summarised', u'kickham', u'transcribed', u'address', u'isikoff', u'explains', u'email', u'told', u'postscript', u'complaint', u'foreword', u'typed', u'memo', u'obituaries', u'mailed', u'summarized', u'drapier', u'stossel', u'retraction', u'remark', u'presented', u'quoting', u'recounted', u'bruccoli', u'kuralt', u'testimony', u'aloud', u'mentions', u'footnotes', u'lupoff', u'notes', u'wrote'])
intersection (0): set([])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (2): set([u'see', u'reread'])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'load', u'compressed', u'retrieve', u'keystrokes', u'manually', u'encrypted', u'configured', u'decrypt', u'reads', u'stored', u'file', u'checksums', u'message', u'pointer', u'overwrite', u'write', u'encrypt', u'formatted', u'adx', u'decode', u'tarball', u'autorun', u'encode', u'timestamps', u'copied', u'transparently', u'files', u'decoded', u'optionally', u'buffer', u'modify', u'editable', u'commands', u'user', u'losslessly', u'data', u'queried', u'execute', u'interactively', u'input', u'cached', u'messages', u'queue', u'edit', u'erase', u'mapped', u'unformatted', u'autoplay', u'automatically', u'delete'])
intersection (0): set([])
READ
golden (10): set([u'call', u'read', u'verbalize', u'verbalise', u'dictate', u'utter', u'numerate', u'mouth', u'talk', u'speak'])
predicted (50): set([u'recite', u'referenced', u'concordances', u'quoted', u'discussed', u'cited', u'targum', u'verses', u'quotes', u'addressed', u'books', u'preface', u'pseudepigraphical', u'belletristic', u'chachamim', u'halachot', u'quraan', u'haftorah', u'kinnot', u'polyglots', u'prayerbooks', u'reading', u'pentateuchal', u'lections', u'edifying', u'florilegia', u'relevant', u'prefaces', u'circulated', u'translated', u'ketuvim', u'devotionals', u'cabalistic', u'pseudepigraphal', u'authentic', u'writings', u'yizkor', u'bible', u'sapiential', u'omit', u'disseminated', u'maxims', u'passages', u'recited', u'piyyutim', u'apocryphal', u'aphoristic', u'siddurim', u'paritta', u'compendiums'])
intersection (0): set([])
READ
golden (16): set([u'speech-read', u'lipread', u'anagrammatize', u'reread', u'trace', u'read', u'decipher', u'see', u'skim', u'skim over', u'anagram', u'construe', u'lip-read', u'anagrammatise', u'interpret', u'dip into'])
predicted (50): set([u'replied', u'letters', u'addresses', u'deneen', u'huie', u'ghostwritten', u'quotes', u'reads', u'suskind', u'penned', u'delivered', u'describing', u'wnd', u'headline', u'bugliosi', u'comments', u'writing', u'uttered', u'summarised', u'kickham', u'transcribed', u'address', u'isikoff', u'explains', u'email', u'told', u'postscript', u'complaint', u'foreword', u'typed', u'memo', u'obituaries', u'mailed', u'summarized', u'drapier', u'stossel', u'retraction', u'remark', u'presented', u'quoting', u'recounted', u'bruccoli', u'kuralt', u'testimony', u'aloud', u'mentions', u'footnotes', u'lupoff', u'notes', u'wrote'])
intersection (0): set([])
READ
golden (4): set([u'read', u'say', u'feature', u'have'])
predicted (50): set([u'liked', u'reread', u'whatever', u'understood', u'say', u'bothered', u'forgot', u'forget', u'find', u'forgotten', u'anyone', u'what', u'careful', u'explain', u'please', u'write', u'recommend', u'answer', u'so', u'speak', u'ought', u'listen', u'do', u'someone', u'never', u'ponder', u'wish', u'ayou', u'hear', u'if', u'ado', u'ahow', u'teach', u'wanted', u'me', u'refuse', u'remember', u'anything', u'always', u'appreciate', u'see', u'admire', u'honestly', u'recall', u'aloud', u'understand', u'aif', u'words', u'make', u'wrote'])
intersection (1): set([u'say'])
SERIOUS
golden (3): set([u'sober', u'serious', u'unplayful'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (2): set([u'serious', u'good'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (3): set([u'sober', u'serious', u'unplayful'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (46): set([u'gunshot', u'horrendous', u'abdominal', u'niggling', u'setback', u'crippling', u'hamstring', u'chronic', u'mild', u'sustained', u'concussions', u'surgery', u'injuries', u'setbacks', u'debilitating', u'asthma', u'recovery', u'dislocated', u'concussion', u'ligaments', u'ankle', u'suffered', u'fatal', u'recurring', u'ruptured', u'leg', u'infection', u'broken', u'suffering', u'accident', u'wrist', u'mishap', u'fractured', u'knee', u'terrible', u'bout', u'shoulder', u'injury', u'recovering', u'brain', u'stroke', u'severe', u'cartilage', u'elbow', u'fatigue', u'groin'])
intersection (0): set([])
SERIOUS
golden (2): set([u'serious', u'good'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (3): set([u'sober', u'serious', u'unplayful'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (1): set([u'severe'])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (3): set([u'sober', u'serious', u'unplayful'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (3): set([u'sober', u'serious', u'unplayful'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'illnesses', u'hypothermia', u'reactions', u'catastrophic', u'seizure', u'foodborne', u'mild', u'fatalities', u'premature', u'migraines', u'injuries', u'depression', u'distress', u'complication', u'aggravate', u'relapse', u'worsen', u'deaths', u'threatening', u'exacerbate', u'adverse', u'potentially', u'trauma', u'convulsions', u'worsening', u'panic', u'painful', u'drowsiness', u'sickness', u'withdrawal', u'problems', u'treatable', u'discomfort', u'intoxication', u'preventable', u'cases', u'mtbi', u'injury', u'profound', u'cause', u'hypoglycemia', u'fatal', u'experience', u'migraine', u'severe', u'complications', u'risks', u'experiencing', u'starvation', u'diarrhoea'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (1): set([u'serious'])
predicted (50): set([u'pessimistic', u'imaginative', u'likable', u'provocative', u'cynical', u'less', u'humorous', u'engaging', u'thoughtful', u'perceptive', u'optimistic', u'worldly', u'subtle', u'believable', u'comical', u'superficial', u'satisfying', u'nuanced', u'sensitive', u'cerebral', u'interesting', u'likeable', u'witty', u'comedic', u'compelling', u'quirky', u'frivolous', u'more', u'unconventional', u'fascinating', u'sarcastic', u'sophisticated', u'often', u'formulaic', u'predictable', u'somewhat', u'insightful', u'daring', u'playful', u'sentimental', u'romantic', u'brilliant', u'boring', u'pretentious', u'opinionated', u'melodramatic', u'complicated', u'entertaining', u'cliched', u'lighthearted'])
intersection (0): set([])
SERIOUS
golden (6): set([u'grievous', u'life-threatening', u'dangerous', u'severe', u'serious', u'grave'])
predicted (50): set([u'lawlessness', u'dissent', u'allegations', u'cronyism', u'suspicions', u'difficulties', u'crisis', u'intervention', u'problems', u'deliberate', u'mounting', u'fears', u'causing', u'accusations', u'caused', u'incidents', u'terrorism', u'imbalance', u'political', u'corruption', u'conflict', u'dispute', u'intractable', u'vigorous', u'precipitate', u'ineffective', u'continuing', u'repercussions', u'posed', u'possible', u'embarrassment', u'disastrous', u'censorship', u'troubling', u'rampant', u'widespread', u'unresolved', u'heightened', u'consequences', u'prosecutions', u'persistent', u'rife', u'severe', u'ineffectual', u'ongoing', u'threat', u'escalating', u'problem', u'bloodshed', u'miscalculations'])
intersection (1): set([u'severe'])
SERVE
golden (10): set([u'assist', u'help', u'attend', u'work', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (9): set([u'help', u'attend', u'assist', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'aid'])
SERVE
golden (10): set([u'assist', u'help', u'attend', u'work', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'run', u'service', u'work', u'serve', u'go', u'operate'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (9): set([u'help', u'attend', u'assist', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (9): set([u'help', u'attend', u'assist', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (9): set([u'help', u'attend', u'assist', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (10): set([u'function', u'run', u'service', u'work', u'serve', u'foster', u'go', u'nurture', u'operate', u'serve well'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (9): set([u'function', u'do', u'act as', u'work', u'serve', u'do work', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'ambassador', u'concurrently', u'serving', u'paymaster', u'deputy', u'acted', u'postmaster', u'reappointed', u'aide', u'assigned', u'as', u'dearie', u'commissary', u'captain', u'fill', u'parliamentary', u'become', u'general', u'selected', u'acting', u'staff', u'designate', u'adviser', u'briefly', u'temporary', u'chose', u'assistant', u'hire', u'ohnimus', u'succeed', u'advisor', u'surgeon', u'replace', u'appointed', u'chaplain', u'appoint', u'brigadier', u'counsel', u'adjutant', u'assume', u'consultant', u'quartermaster', u'commandant', u'chief', u'delegate', u'promoted', u'served', u'counselor', u'secretary'])
intersection (0): set([])
SERVE
golden (9): set([u'function', u'do', u'act as', u'work', u'serve', u'do work', u'answer', u'prelude', u'suffice'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (16): set([u'function', u'do', u'tide over', u'satisfy', u'go around', u'live up to', u'keep going', u'serve', u'qualify', u'measure up', u'go a long way', u'answer', u'fulfill', u'fulfil', u'bridge over', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (1): set([u'sit'])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (5): set([u'do', u'admit', u'serve', u'spend', u'pass'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (3): set([u'work', u'serve', u'do work'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'run', u'service', u'work', u'serve', u'go', u'operate'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (5): set([u'do', u'admit', u'serve', u'spend', u'pass'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'run', u'service', u'work', u'serve', u'go', u'operate'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'run', u'service', u'work', u'serve', u'go', u'operate'])
predicted (50): set([u'camtran', u'serving', u'bart', u'trenton', u'trimet', u'existing', u'connections', u'commute', u'westcat', u'connect', u'transportation', u'tcat', u'amtrak', u'system', u'motorcoaches', u'mainlines', u'branch', u'samtrans', u'morayfield', u'netcong', u'grtc', u'closest', u'mattapan', u'rail', u'decoto', u'longport', u'mcbean', u'nctd', u'towaco', u'rezoned', u'mondawmin', u'intracity', u'servicing', u'orenco', u'leases', u'rhawnhurst', u'feeder', u'commuters', u'central', u'metro', u'lines', u'serves', u'wsor', u'continue', u'planned', u'routes', u'westbus', u'operate', u'crandic', u'nearby'])
intersection (1): set([u'operate'])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (6): set([u'help', u'supply', u'provide', u'serve', u'ply', u'cater'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (9): set([u'help', u'attend', u'assist', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'aid'])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (18): set([u'help', u'attend', u'supply', u'provide', u'dish up', u'assist', u'serve', u'ply', u'fag', u'dish out', u'plank', u'cater', u'aid', u'dish', u'serve up', u'attend to', u'valet', u'wait on'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'run', u'service', u'work', u'serve', u'go', u'operate'])
predicted (49): set([u'ambassador', u'concurrently', u'serving', u'paymaster', u'deputy', u'acted', u'postmaster', u'reappointed', u'aide', u'assigned', u'as', u'dearie', u'commissary', u'captain', u'fill', u'parliamentary', u'become', u'general', u'selected', u'acting', u'staff', u'designate', u'adviser', u'briefly', u'temporary', u'chose', u'assistant', u'hire', u'ohnimus', u'succeed', u'advisor', u'surgeon', u'replace', u'appointed', u'chaplain', u'appoint', u'brigadier', u'counsel', u'adjutant', u'assume', u'consultant', u'quartermaster', u'commandant', u'chief', u'delegate', u'promoted', u'served', u'counselor', u'secretary'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'run', u'service', u'work', u'serve', u'go', u'operate'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (49): set([u'ambassador', u'concurrently', u'serving', u'paymaster', u'deputy', u'acted', u'postmaster', u'reappointed', u'aide', u'assigned', u'as', u'dearie', u'commissary', u'captain', u'fill', u'parliamentary', u'become', u'general', u'selected', u'acting', u'staff', u'designate', u'adviser', u'briefly', u'temporary', u'chose', u'assistant', u'hire', u'ohnimus', u'succeed', u'advisor', u'surgeon', u'replace', u'appointed', u'chaplain', u'appoint', u'brigadier', u'counsel', u'adjutant', u'assume', u'consultant', u'quartermaster', u'commandant', u'chief', u'delegate', u'promoted', u'served', u'counselor', u'secretary'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (49): set([u'ambassador', u'concurrently', u'serving', u'paymaster', u'deputy', u'acted', u'postmaster', u'reappointed', u'aide', u'assigned', u'as', u'dearie', u'commissary', u'captain', u'fill', u'parliamentary', u'become', u'general', u'selected', u'acting', u'staff', u'designate', u'adviser', u'briefly', u'temporary', u'chose', u'assistant', u'hire', u'ohnimus', u'succeed', u'advisor', u'surgeon', u'replace', u'appointed', u'chaplain', u'appoint', u'brigadier', u'counsel', u'adjutant', u'assume', u'consultant', u'quartermaster', u'commandant', u'chief', u'delegate', u'promoted', u'served', u'counselor', u'secretary'])
intersection (1): set([u'staff'])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (3): set([u'work', u'serve', u'do work'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (1): set([u'sit'])
SERVE
golden (7): set([u'process', u'deliver', u'serve', u'wash', u'subpoena', u'swear out', u'rinse'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (1): set([u'sit'])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (6): set([u'help', u'effectuate', u'set up', u'serve', u'effect', u'facilitate'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (49): set([u'ambassador', u'concurrently', u'serving', u'paymaster', u'deputy', u'acted', u'postmaster', u'reappointed', u'aide', u'assigned', u'as', u'dearie', u'commissary', u'captain', u'fill', u'parliamentary', u'become', u'general', u'selected', u'acting', u'staff', u'designate', u'adviser', u'briefly', u'temporary', u'chose', u'assistant', u'hire', u'ohnimus', u'succeed', u'advisor', u'surgeon', u'replace', u'appointed', u'chaplain', u'appoint', u'brigadier', u'counsel', u'adjutant', u'assume', u'consultant', u'quartermaster', u'commandant', u'chief', u'delegate', u'promoted', u'served', u'counselor', u'secretary'])
intersection (1): set([u'staff'])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (9): set([u'help', u'attend', u'assist', u'serve', u'fag', u'valet', u'aid', u'attend to', u'wait on'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (1): set([u'sit'])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (0): set([])
SERVE
golden (17): set([u'function', u'represent', u'rotate', u'do', u'sit', u'caddie', u'caddy', u'act as', u'work', u'serve', u'officiate', u'do work', u'act', u'answer', u'prelude', u'suffice', u'staff'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (3): set([u'work', u'serve', u'do work'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (12): set([u'help', u'attend', u'assist', u'serve', u'fag', u'foster', u'wait on', u'aid', u'nurture', u'valet', u'serve well', u'attend to'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'ambassador', u'concurrently', u'serving', u'paymaster', u'deputy', u'acted', u'postmaster', u'reappointed', u'aide', u'assigned', u'as', u'dearie', u'commissary', u'captain', u'fill', u'parliamentary', u'become', u'general', u'selected', u'acting', u'staff', u'designate', u'adviser', u'briefly', u'temporary', u'chose', u'assistant', u'hire', u'ohnimus', u'succeed', u'advisor', u'surgeon', u'replace', u'appointed', u'chaplain', u'appoint', u'brigadier', u'counsel', u'adjutant', u'assume', u'consultant', u'quartermaster', u'commandant', u'chief', u'delegate', u'promoted', u'served', u'counselor', u'secretary'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'senators', u'staggered', u'elect', u'nominates', u'deputy', u'appointive', u'retire', u'appoints', u'representatives', u'oregonas', u'elected', u'serving', u'commissioners', u'aldermanic', u'year', u'quaestors', u'councilmen', u'gubernatorial', u'judges', u'sit', u'deliberated', u'chairpersons', u'chooses', u'presides', u'elects', u'convene', u'nominees', u'consecutive', u'electing', u'councilors', u'terms', u'justices', u'sitting', u'nonvoting', u'members', u'presidentially', u'appointed', u'renewable', u'nonconsecutive', u'appoint', u'four', u'term', u'judgeships', u'quorum', u'nominate', u'convenes', u'serves', u'preside', u'delegate'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'provide'])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (10): set([u'supply', u'provide', u'dish up', u'serve', u'ply', u'dish', u'serve up', u'dish out', u'cater', u'plank'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (3): set([u'work', u'serve', u'do work'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (12): set([u'help', u'attend', u'assist', u'serve', u'fag', u'foster', u'wait on', u'aid', u'nurture', u'valet', u'serve well', u'attend to'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (12): set([u'function', u'represent', u'rotate', u'sit', u'caddie', u'serve', u'work', u'caddy', u'do work', u'act', u'officiate', u'staff'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (1): set([u'act'])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (4): set([u'nurture', u'foster', u'serve', u'serve well'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SERVE
golden (7): set([u'function', u'do', u'act as', u'serve', u'answer', u'prelude', u'suffice'])
predicted (49): set([u'incorporate', u'serving', u'appreciate', u'acted', u'indoor', u'accept', u'bring', u'as', u'advertise', u'functioned', u'carry', u'take', u'alternative', u'seek', u'find', u'regarded', u'provide', u'make', u'preserve', u'adhere', u'adjunct', u'need', u'combine', u'opposed', u'destroy', u'treat', u'locate', u'be', u'acquire', u'accompany', u'utilise', u'afford', u'enter', u'permit', u'known', u'such', u'hold', u'expand', u'arrange', u'drop', u'well', u'serves', u'employ', u'collect', u'act', u'aid', u'refer', u'create', u'referred'])
intersection (0): set([])
SERVE
golden (12): set([u'serve well', u'help', u'attend', u'assist', u'serve', u'wait on', u'foster', u'aid', u'nurture', u'valet', u'fag', u'attend to'])
predicted (50): set([u'urge', u'appease', u'devote', u'train', u'disobey', u'recruit', u'elevate', u'instruct', u'cease', u'attain', u'want', u'need', u'induce', u'summon', u'seek', u'desiring', u'educate', u'uphold', u'pray', u'defend', u'give', u'exhort', u'unite', u'encourage', u'treat', u'destroy', u'confine', u'persevere', u'guide', u'obey', u'defy', u'oppress', u'refuse', u'pretended', u'abandon', u'observe', u'execute', u'wanting', u'shun', u'entrust', u'strive', u'hire', u'bind', u'dedicate', u'exhorted', u'continue', u'oppose', u'aspire', u'commit', u'revere'])
intersection (0): set([])
SEVERE
golden (5): set([u'knockout', u'severe', u'hard', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (1): set([u'severe'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (4): set([u'severe', u'austere', u'stark', u'stern'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (1): set([u'severe'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (1): set([u'serious'])
SEVERE
golden (4): set([u'severe', u'austere', u'stark', u'stern'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (5): set([u'knockout', u'severe', u'hard', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (10): set([u'grievous', u'life-threatening', u'knockout', u'dangerous', u'hard', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (1): set([u'serious'])
SEVERE
golden (3): set([u'knockout', u'severe', u'hard'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (4): set([u'severe', u'terrible', u'spartan', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'knockout', u'severe', u'hard'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (1): set([u'serious'])
SEVERE
golden (4): set([u'severe', u'austere', u'stark', u'stern'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'knockout', u'severe', u'hard'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (1): set([u'serious'])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (1): set([u'severe'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'knockout', u'severe', u'hard'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (4): set([u'severe', u'austere', u'stark', u'stern'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (6): set([u'austere', u'terrible', u'stark', u'severe', u'stern', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (1): set([u'serious'])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (8): set([u'grievous', u'life-threatening', u'dangerous', u'terrible', u'severe', u'serious', u'grave', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (1): set([u'severe'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'knockout', u'severe', u'hard'])
predicted (49): set([u'heavy', u'mudslides', u'cyclones', u'caused', u'snowfall', u'downpours', u'gale', u'droughts', u'winds', u'tornadoes', u'snowstorms', u'rains', u'storms', u'damage', u'hailstorms', u'landslides', u'adverse', u'causing', u'catastrophic', u'affecting', u'moderate', u'earthquakes', u'minimal', u'rainfall', u'washouts', u'surges', u'occurred', u'thunderstorm', u'cyclone', u'hurricanes', u'drought', u'destructive', u'kika', u'windstorms', u'gales', u'rainfalls', u'wilma', u'tsunamis', u'floods', u'devastating', u'rainstorms', u'surge', u'tornadic', u'inundations', u'unseasonal', u'torrential', u'gusty', u'flooding', u'thunderstorms'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SEVERE
golden (4): set([u'severe', u'terrible', u'spartan', u'wicked'])
predicted (50): set([u'excessive', u'inevitably', u'gravely', u'inhumane', u'unrest', u'persecution', u'atrocious', u'coercion', u'repressive', u'unjust', u'wanton', u'harsh', u'mounting', u'curbed', u'severest', u'causing', u'exacerbating', u'dissent', u'lawlessness', u'widespread', u'worsening', u'corruption', u'lingering', u'banditry', u'intractable', u'worse', u'ineffective', u'minimized', u'nepotism', u'disruptive', u'censorship', u'outcries', u'rampant', u'harsher', u'retribution', u'perceived', u'heightened', u'cronyism', u'compounding', u'wholesale', u'persistent', u'brutal', u'retaliation', u'bad', u'ineffectual', u'arbitrary', u'serious', u'intolerable', u'draconian', u'lenient'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'gunshot', u'illness', u'ailment', u'aorta', u'overwork', u'chronic', u'stroke', u'knee', u'concussions', u'frostbite', u'injuries', u'depression', u'headaches', u'debilitating', u'asthma', u'concussion', u'wound', u'haemorrhage', u'fatal', u'trauma', u'kidney', u'pains', u'fracture', u'suffered', u'injury', u'recurring', u'ruptured', u'exhaustion', u'breakdown', u'stomach', u'meningitis', u'infection', u'suffering', u'wrist', u'abdominal', u'fractured', u'sustained', u'bout', u'mild', u'suffers', u'nagging', u'brain', u'paralysis', u'crippling', u'dehydration', u'tumor', u'pneumonia', u'cartilage', u'serious', u'liver'])
intersection (0): set([])
SEVERE
golden (3): set([u'severe', u'terrible', u'wicked'])
predicted (50): set([u'constipation', u'bleeding', u'sepsis', u'ulcers', u'dyspnea', u'chronic', u'mild', u'systemic', u'hypothyroidism', u'rhabdomyolysis', u'sufferers', u'migraines', u'hypotonia', u'headaches', u'seizures', u'thrombocytopenia', u'migraine', u'scarring', u'diarrhea', u'symptoms', u'trauma', u'convulsions', u'injury', u'cause', u'painful', u'headache', u'dysfunction', u'pain', u'weakness', u'drowsiness', u'problems', u'symptomatic', u'discomfort', u'hypotension', u'cases', u'untreated', u'congenital', u'acute', u'neurological', u'respiratory', u'hyperthyroidism', u'bloating', u'impairment', u'hypoglycemia', u'complications', u'jaundice', u'neurologic', u'hypertension', u'diarrhoea', u'bradycardia'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (31): set([u'daylight vision', u'monocular vision', u'twilight vision', u'visual modality', u'seeing', u'peripheral vision', u'sharp-sightedness', u'eyesight', u'distance vision', u'visual sense', u'sight', u'central vision', u'modality', u'color vision', u'trichromacy', u'chromatic vision', u'sightedness', u'sensory system', u'night-sight', u'near vision', u'binocular vision', u'photopic vision', u'sense modality', u'scotopic vision', u'exteroception', u'achromatic vision', u'stigmatism', u'visual acuity', u'acuity', u'night vision', u'vision'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (1): set([u'seeing'])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (7): set([u'look', u'eyeful', u'looking', u'looking at', u'sight', u'survey', u'view'])
predicted (50): set([u'decocker', u'adjustable', u'locking', u'loader', u'gauge', u'pivot', u'adjustment', u'trailing', u'arm', u'swivelled', u'handgrip', u'angle', u'tilt', u'tip', u'coaxially', u'mechanism', u'pivoted', u'trigger', u'slide', u'chainring', u'slewing', u'scope', u'monopod', u'reticule', u'wheel', u'handguard', u'bipod', u'receiver', u'flange', u'spool', u'buttstock', u'crankset', u'weaponas', u'lever', u'foregrip', u'pivoting', u'reticle', u'telescopic', u'adapter', u'detachable', u'forend', u'flaperons', u'pintle', u'nose', u'mounting', u'baseplate', u'crank', u'barrel', u'fixed', u'susat'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (31): set([u'daylight vision', u'monocular vision', u'twilight vision', u'visual modality', u'seeing', u'peripheral vision', u'sharp-sightedness', u'eyesight', u'distance vision', u'visual sense', u'sight', u'central vision', u'modality', u'color vision', u'trichromacy', u'chromatic vision', u'sightedness', u'sensory system', u'night-sight', u'near vision', u'binocular vision', u'photopic vision', u'sense modality', u'scotopic vision', u'exteroception', u'achromatic vision', u'stigmatism', u'visual acuity', u'acuity', u'night vision', u'vision'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (1): set([u'seeing'])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (31): set([u'daylight vision', u'monocular vision', u'twilight vision', u'visual modality', u'seeing', u'peripheral vision', u'sharp-sightedness', u'eyesight', u'distance vision', u'visual sense', u'sight', u'central vision', u'modality', u'color vision', u'trichromacy', u'chromatic vision', u'sightedness', u'sensory system', u'night-sight', u'near vision', u'binocular vision', u'photopic vision', u'sense modality', u'scotopic vision', u'exteroception', u'achromatic vision', u'stigmatism', u'visual acuity', u'acuity', u'night vision', u'vision'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (1): set([u'seeing'])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (5): set([u'visual percept', u'spectacle', u'display', u'sight', u'visual image'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (9): set([u'ken', u'reach', u'range', u'perspective', u'sight', u'compass', u'grasp', u'position', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (31): set([u'daylight vision', u'monocular vision', u'twilight vision', u'visual modality', u'seeing', u'peripheral vision', u'sharp-sightedness', u'eyesight', u'distance vision', u'visual sense', u'sight', u'central vision', u'modality', u'color vision', u'trichromacy', u'chromatic vision', u'sightedness', u'sensory system', u'night-sight', u'near vision', u'binocular vision', u'photopic vision', u'sense modality', u'scotopic vision', u'exteroception', u'achromatic vision', u'stigmatism', u'visual acuity', u'acuity', u'night vision', u'vision'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (1): set([u'seeing'])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (31): set([u'daylight vision', u'monocular vision', u'twilight vision', u'visual modality', u'seeing', u'peripheral vision', u'sharp-sightedness', u'eyesight', u'distance vision', u'visual sense', u'sight', u'central vision', u'modality', u'color vision', u'trichromacy', u'chromatic vision', u'sightedness', u'sensory system', u'night-sight', u'near vision', u'binocular vision', u'photopic vision', u'sense modality', u'scotopic vision', u'exteroception', u'achromatic vision', u'stigmatism', u'visual acuity', u'acuity', u'night vision', u'vision'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (1): set([u'seeing'])
SIGHT
golden (31): set([u'daylight vision', u'monocular vision', u'twilight vision', u'visual modality', u'seeing', u'peripheral vision', u'sharp-sightedness', u'eyesight', u'distance vision', u'visual sense', u'sight', u'central vision', u'modality', u'color vision', u'trichromacy', u'chromatic vision', u'sightedness', u'sensory system', u'night-sight', u'near vision', u'binocular vision', u'photopic vision', u'sense modality', u'scotopic vision', u'exteroception', u'achromatic vision', u'stigmatism', u'visual acuity', u'acuity', u'night vision', u'vision'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (5): set([u'visual percept', u'spectacle', u'display', u'sight', u'visual image'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (1): set([u'view'])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (31): set([u'daylight vision', u'monocular vision', u'twilight vision', u'visual modality', u'seeing', u'peripheral vision', u'sharp-sightedness', u'eyesight', u'distance vision', u'visual sense', u'sight', u'central vision', u'modality', u'color vision', u'trichromacy', u'chromatic vision', u'sightedness', u'sensory system', u'night-sight', u'near vision', u'binocular vision', u'photopic vision', u'sense modality', u'scotopic vision', u'exteroception', u'achromatic vision', u'stigmatism', u'visual acuity', u'acuity', u'night vision', u'vision'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (1): set([u'seeing'])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (9): set([u'ken', u'reach', u'range', u'perspective', u'sight', u'compass', u'grasp', u'position', u'view'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (1): set([u'view'])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (4): set([u'position', u'perspective', u'sight', u'view'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'rookeries', u'desolate', u'sydneysiders', u'occurrence', u'sunbathers', u'saltee', u'inaccessible', u'near', u'harbour', u'feature', u'aspect', u'unpassable', u'rough', u'duckboards', u'trampers', u'area', u'stretch', u'grounds', u'sachs', u'retreats', u'foreshores', u'sheltered', u'longboats', u'coracles', u'sealife', u'calmest', u'scampering', u'staying', u'currachs', u'though', u'beached', u'hazardous', u'spot', u'quite', u'swiftest', u'hiding', u'caiques', u'frigate', u'remote', u'crowded', u'locations', u'dangerous', u'seaside', u'quiet', u'shore', u'place', u'anchorage', u'swimming', u'blakiston', u'view'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'breathtaking', u'reverence', u'humour', u'moments', u'artistry', u'weirdness', u'unforgettable', u'sheer', u'anticipation', u'sad', u'interesting', u'humorous', u'creativity', u'emotions', u'endings', u'originality', u'spellbinding', u'exuberance', u'amusing', u'hilarious', u'speech', u'visuals', u'witticisms', u'melancholy', u'captivating', u'pantomimic', u'lucid', u'beckettas', u'unhurried', u'filmic', u'poignant', u'breathless', u'perfection', u'underscore', u'poignancy', u'hallucinatory', u'lucidity', u'truly', u'monologues', u'applause', u'incisive', u'brilliant', u'pacing', u'sadness', u'indescribably', u'absurd', u'emotional', u'unfettered', u'laughter', u'exquisite'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (6): set([u'ken', u'reach', u'range', u'sight', u'compass', u'grasp'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'display', u'sight', u'spectacle'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SIGHT
golden (3): set([u'visual image', u'sight', u'visual percept'])
predicted (50): set([u'remembering', u'heart', u'danger', u'eyes', u'hypnotise', u'shame', u'anger', u'fear', u'out', u'letting', u'curse', u'eye', u'disbelief', u'despairs', u'breath', u'tears', u'spitefully', u'crying', u'memory', u'wrings', u'conscience', u'hurting', u'abashed', u'ignorance', u'moment', u'mouth', u'blood', u'curiosity', u'hands', u'wearily', u'deception', u'ear', u'seeing', u'thoughts', u'predicament', u'reflection', u'cries', u'fearful', u'gaze', u'shock', u'life', u'sneezed', u'swooned', u'face', u'reminding', u'despair', u'gasped', u'completely', u'nerves', u'silently'])
intersection (0): set([])
SOUND
golden (3): set([u'sound', u'water', u'body of water'])
predicted (50): set([u'kuluk', u'puget', u'strait', u'shoals', u'chichagof', u'anchored', u'shipyard', u'algoa', u'baffin', u'shumagin', u'narragansett', u'port', u'capes', u'inlet', u'sapelo', u'mcmurdo', u'bermuda', u'esquimalt', u'gilbert', u'kodiak', u'channel', u'ossabaw', u'mayport', u'onekotan', u'cruising', u'hawaiian', u'mare', u'casco', u'anchorage', u'barnegat', u'yakutat', u'wassaw', u'reef', u'ocracoke', u'cape', u'breakwater', u'moored', u'texada', u'off', u'bremerton', u'island', u'chesapeake', u'bay', u'newport', u'melville', u'jervis', u'johnston', u'norfolk', u'newfoundland', u'admiralty'])
intersection (0): set([])
SOUND
golden (114): set([u'susurrus', u'footstep', u'zing', u'clop', u'clumping', u'trampling', u'drumbeat', u'tinkle', u'thump', u'whack', u'bombilation', u'patter', u'song', u'beat', u'muttering', u'clopping', u'whistle', u'chirrup', u'strum', u'tick', u'knock', u'plunk', u'cry', u'pealing', u'chorus', u'rub-a-dub', u'throbbing', u'whirr', u'bong', u'unison', u'gargle', u'occurrence', u'sigh', u'twitter', u'whiz', u'whir', u'click', u'popping', u'birr', u'ticking', u'toll', u'noise', u'twang', u'bleep', u'step', u'murmur', u'chink', u'quack', u'drum', u'racketiness', u'vroom', u'buzz', u'clump', u'ding', u'thumping', u'bell', u'knocking', u'pop', u'thrum', u'skirl', u'ring', u'paradiddle', u'gurgle', u'drum roll', u'vibrato', u'tootle', u'quaver', u'clunking', u'beep', u'zizz', u'jingle', u'mutter', u'toot', u'tapping', u'tintinnabulation', u'whirring', u'sound', u'sound property', u'voice', u'natural event', u'murmuring', u'tap', u'ringing', u'dripping', u'thunk', u'rap', u'thud', u'purr', u'pat', u'ping', u'clunk', u'trample', u'murmuration', u'rataplan', u'clink', u'roll', u'noisiness', u'footfall', u'susurration', u'bombination', u'whistling', u'ting', u'occurrent', u'chirp', u'peal', u'clippety-clop', u'rolling', u'jangle', u'swish', u'happening', u'clip-clop', u'drip', u'click-clack', u'mussitation'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (4): set([u'beat', u'voice', u'noise', u'vibrato'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (3): set([u'sound', u'ultrasound', u'mechanical phenomenon'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'kuluk', u'puget', u'strait', u'shoals', u'chichagof', u'anchored', u'shipyard', u'algoa', u'baffin', u'shumagin', u'narragansett', u'port', u'capes', u'inlet', u'sapelo', u'mcmurdo', u'bermuda', u'esquimalt', u'gilbert', u'kodiak', u'channel', u'ossabaw', u'mayport', u'onekotan', u'cruising', u'hawaiian', u'mare', u'casco', u'anchorage', u'barnegat', u'yakutat', u'wassaw', u'reef', u'ocracoke', u'cape', u'breakwater', u'moored', u'texada', u'off', u'bremerton', u'island', u'chesapeake', u'bay', u'newport', u'melville', u'jervis', u'johnston', u'norfolk', u'newfoundland', u'admiralty'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (3): set([u'sound', u'water', u'body of water'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (1): set([u'dub'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (22): set([u'unison', u'tone', u'sensation', u'euphony', u'pure tone', u'racket', u'auditory sensation', u'ring', u'dissonance', u'sense experience', u'dub', u'music', u'noisiness', u'noise', u'sense datum', u'esthesis', u'sense impression', u'sound', u'racketiness', u'sound property', u'aesthesis', u'voice'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (2): set([u'voice', u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'microphones', u'digitally', u'projection', u'daws', u'screens', u'circuitry', u'video', u'displays', u'fidelity', u'quality', u'monitors', u'analog', u'loudspeaker', u'microphone', u'digitizers', u'monitor', u'display', u'electronic', u'cameras', u'dsp', u'signals', u'playback', u'speaker', u'preamplifiers', u'amplifiers', u'digital', u'tape', u'oscilloscopes', u'loudspeakers', u'cassette', u'inputs', u'camera', u'pcm', u'speakers', u'sdds', u'readout', u'optical', u'dimmers', u'telecine', u'hdri', u'stereo', u'headphones', u'recorders', u'surround', u'audible', u'recording', u'discrete', u'reproduction', u'audio', u'projectors'])
intersection (0): set([])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (1): set([u'dub'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (30): set([u'tone', u'sensation', u'speech sound', u'euphony', u'voiced sound', u'pure tone', u'racket', u'auditory sensation', u'dissonance', u'linguistic unit', u'glide', u'dub', u'music', u'language unit', u'semivowel', u'noise', u'vowel sound', u'sense datum', u'phone', u'esthesis', u'sense impression', u'vowel', u'consonant', u'sound', u'orinasal phone', u'sense experience', u'phoneme', u'orinasal', u'aesthesis', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (21): set([u'unison', u'sound', u'voiced sound', u'linguistic unit', u'vowel sound', u'glide', u'racketiness', u'orinasal', u'phone', u'speech sound', u'phoneme', u'orinasal phone', u'semivowel', u'sound property', u'vowel', u'ring', u'voice', u'sonant', u'consonant', u'noisiness', u'language unit'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (0): set([])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (22): set([u'unison', u'tone', u'sensation', u'euphony', u'pure tone', u'racket', u'auditory sensation', u'ring', u'dissonance', u'sense experience', u'dub', u'music', u'noisiness', u'noise', u'sense datum', u'esthesis', u'sense impression', u'sound', u'racketiness', u'sound property', u'aesthesis', u'voice'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (2): set([u'voice', u'noise'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (1): set([u'dub'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (0): set([])
SOUND
golden (21): set([u'unison', u'sound', u'voiced sound', u'linguistic unit', u'vowel sound', u'glide', u'racketiness', u'orinasal', u'phone', u'speech sound', u'phoneme', u'orinasal phone', u'semivowel', u'sound property', u'vowel', u'ring', u'voice', u'sonant', u'consonant', u'noisiness', u'language unit'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (21): set([u'unison', u'sound', u'voiced sound', u'linguistic unit', u'vowel sound', u'glide', u'racketiness', u'orinasal', u'phone', u'speech sound', u'phoneme', u'orinasal phone', u'semivowel', u'sound property', u'vowel', u'ring', u'voice', u'sonant', u'consonant', u'noisiness', u'language unit'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'microphones', u'digitally', u'projection', u'daws', u'screens', u'circuitry', u'video', u'displays', u'fidelity', u'quality', u'monitors', u'analog', u'loudspeaker', u'microphone', u'digitizers', u'monitor', u'display', u'electronic', u'cameras', u'dsp', u'signals', u'playback', u'speaker', u'preamplifiers', u'amplifiers', u'digital', u'tape', u'oscilloscopes', u'loudspeakers', u'cassette', u'inputs', u'camera', u'pcm', u'speakers', u'sdds', u'readout', u'optical', u'dimmers', u'telecine', u'hdri', u'stereo', u'headphones', u'recorders', u'surround', u'audible', u'recording', u'discrete', u'reproduction', u'audio', u'projectors'])
intersection (0): set([])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (21): set([u'unison', u'sound', u'voiced sound', u'linguistic unit', u'vowel sound', u'glide', u'racketiness', u'orinasal', u'phone', u'speech sound', u'phoneme', u'orinasal phone', u'semivowel', u'sound property', u'vowel', u'ring', u'voice', u'sonant', u'consonant', u'noisiness', u'language unit'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (3): set([u'sound', u'ultrasound', u'mechanical phenomenon'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (15): set([u'sound', u'orinasal phone', u'linguistic unit', u'vowel sound', u'glide', u'phoneme', u'orinasal', u'speech sound', u'phone', u'voiced sound', u'semivowel', u'language unit', u'vowel', u'consonant', u'sonant'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'microphones', u'digitally', u'projection', u'daws', u'screens', u'circuitry', u'video', u'displays', u'fidelity', u'quality', u'monitors', u'analog', u'loudspeaker', u'microphone', u'digitizers', u'monitor', u'display', u'electronic', u'cameras', u'dsp', u'signals', u'playback', u'speaker', u'preamplifiers', u'amplifiers', u'digital', u'tape', u'oscilloscopes', u'loudspeakers', u'cassette', u'inputs', u'camera', u'pcm', u'speakers', u'sdds', u'readout', u'optical', u'dimmers', u'telecine', u'hdri', u'stereo', u'headphones', u'recorders', u'surround', u'audible', u'recording', u'discrete', u'reproduction', u'audio', u'projectors'])
intersection (0): set([])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'heavy', u'industrial', u'thrashy', u'stylings', u'soundscapes', u'lush', u'pop', u'sampling', u'genre', u'beats', u'protopunk', u'ambient', u'mixing', u'spacey', u'grooves', u'dub', u'electronic', u'sounds', u'roots', u'influenced', u'style', u'electronica', u'psychadelic', u'atmospherics', u'mix', u'synth', u'prog', u'electro', u'flavored', u'shoegazing', u'breakbeats', u'sonically', u'soulful', u'fusion', u'techno', u'rockabilly', u'glam', u'danceable', u'psychedelia', u'psychedelic', u'bluesy', u'atmospheric', u'progressive', u'beatlesque', u'harder', u'vibe', u'funky', u'riffs', u'jangly', u'experimental'])
intersection (0): set([])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (16): set([u'sound', u'noise', u'tone', u'sense experience', u'music', u'dub', u'sensation', u'sense datum', u'euphony', u'dissonance', u'esthesis', u'sense impression', u'pure tone', u'racket', u'auditory sensation', u'aesthesis'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'noise'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
SOUND
golden (7): set([u'sound', u'racketiness', u'unison', u'sound property', u'ring', u'voice', u'noisiness'])
predicted (50): set([u'monotonous', u'melodically', u'catchiness', u'louder', u'jarring', u'pitch', u'humming', u'sounding', u'mellow', u'melody', u'rhythmically', u'phrasing', u'throaty', u'noises', u'pattern', u'rhythm', u'shrill', u'guttural', u'rhythmic', u'intonations', u'noise', u'beat', u'nasal', u'shimmery', u'tempo', u'aurally', u'muffled', u'listener', u'punchier', u'vibrato', u'buzzing', u'breathy', u'tune', u'droning', u'audibly', u'twanging', u'timbre', u'sounds', u'sounded', u'whine', u'vocal', u'whooshing', u'syncopation', u'syncopated', u'softly', u'cadence', u'squealing', u'voice', u'loud', u'sonority'])
intersection (1): set([u'voice'])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (37): set([u'commonwealth', u'renegade state', u'city-state', u'soviet socialist republic', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'australian state', u'ally', u'province', u'nation', u'power', u'canadian province', u'foreign country', u'italian region', u'american state', u'commonwealth country', u'eparchy', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'administrative district', u'administrative division', u'country', u'political unit', u'world power', u'city state', u'territorial division', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (6): set([u'government', u'welfare state', u'state', u'authorities', u'soviets', u'regime'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'regime'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (17): set([u'province', u'commonwealth', u'american state', u'administrative district', u'canadian province', u'italian region', u'government', u'state', u'eparchy', u'administrative division', u'territorial division', u'australian state', u'authorities', u'soviet socialist republic', u'welfare state', u'soviets', u'regime'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'regime'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (23): set([u'commonwealth', u'welfare state', u'united states department of state', u'soviet socialist republic', u'soviets', u'regime', u'state department', u'state', u'australian state', u'province', u'government', u'canadian province', u'italian region', u'american state', u'eparchy', u'foggy bottom', u'authorities', u'administrative district', u'administrative division', u'executive department', u'territorial division', u'dos', u'department of state'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'regime'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (6): set([u'government', u'welfare state', u'state', u'authorities', u'soviets', u'regime'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'regime'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (6): set([u'government', u'welfare state', u'state', u'authorities', u'soviets', u'regime'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'regime'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (33): set([u'motherland', u'welfare state', u'european nation', u'country of origin', u'banana republic', u'african nation', u'soviets', u'regime', u'south american country', u'fatherland', u'african country', u'state', u'asian nation', u'homeland', u'sultanate', u'native land', u'kingdom', u'government', u'asian country', u'european country', u'north american nation', u'authorities', u'south american nation', u'buffer country', u'tax haven', u'north american country', u'land', u'administrative district', u'administrative division', u'country', u'mother country', u'territorial division', u'buffer state'])
predicted (48): set([u'attorney', u'senate', u'florida', u'hawaii', u'delegation', u'tennessee', u'committee', u'dakota', u'transportation', u'education', u'agriculture', u'legislator', u'legislative', u'republican', u'48th', u'district', u'oklahoma', u'representatives', u'senatorial', u'illinois', u'committeeman', u'territorial', u'speaker', u'treasury', u'maryland', u'treasurer', u'49th', u'commissioner', u'assembly', u'assemblyman', u'judiciary', u'oregon', u'connecticut', u'california', u'representative', u'reapportion', u'general', u'representing', u'legislature', u'vermont', u'comptroller', u'louisiana', u'constitutional', u'alaska', u'governor', u'stateas', u'jersey', u'secretary'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'duke', u'duquesne', u'fresno', u'wesleyan', u'northeastern', u'auburn', u'gonzaga', u'marquette', u'usf', u'villanova', u'smu', u'fullerton', u'hofstra', u'unlv', u'kutztown', u'rutgers', u'arkansas', u'wsu', u'rice', u'bucknell', u'iowa', u'penn', u'asu', u'samford', u'michigan', u'utah', u'vanderbilt', u'oregon', u'wvu', u'furman', u'millsaps', u'depaul', u'uconn', u'indiana', u'grambling', u'boise', u'alabama', u'northwestern', u'stanford', u'ut', u'university', u'mcneese', u'wichita', u'drake', u'nebraska', u'lafayette', u'fsu', u'pepperdine', u'clemson', u'oklahoma'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (37): set([u'commonwealth', u'renegade state', u'city-state', u'soviet socialist republic', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'australian state', u'ally', u'province', u'nation', u'power', u'canadian province', u'foreign country', u'italian region', u'american state', u'commonwealth country', u'eparchy', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'administrative district', u'administrative division', u'country', u'political unit', u'world power', u'city state', u'territorial division', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (48): set([u'attorney', u'senate', u'florida', u'hawaii', u'delegation', u'tennessee', u'committee', u'dakota', u'transportation', u'education', u'agriculture', u'legislator', u'legislative', u'republican', u'48th', u'district', u'oklahoma', u'representatives', u'senatorial', u'illinois', u'committeeman', u'territorial', u'speaker', u'treasury', u'maryland', u'treasurer', u'49th', u'commissioner', u'assembly', u'assemblyman', u'judiciary', u'oregon', u'connecticut', u'california', u'representative', u'reapportion', u'general', u'representing', u'legislature', u'vermont', u'comptroller', u'louisiana', u'constitutional', u'alaska', u'governor', u'stateas', u'jersey', u'secretary'])
intersection (0): set([])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (6): set([u'government', u'welfare state', u'state', u'authorities', u'soviets', u'regime'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'regime'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (48): set([u'attorney', u'senate', u'florida', u'hawaii', u'delegation', u'tennessee', u'committee', u'dakota', u'transportation', u'education', u'agriculture', u'legislator', u'legislative', u'republican', u'48th', u'district', u'oklahoma', u'representatives', u'senatorial', u'illinois', u'committeeman', u'territorial', u'speaker', u'treasury', u'maryland', u'treasurer', u'49th', u'commissioner', u'assembly', u'assemblyman', u'judiciary', u'oregon', u'connecticut', u'california', u'representative', u'reapportion', u'general', u'representing', u'legislature', u'vermont', u'comptroller', u'louisiana', u'constitutional', u'alaska', u'governor', u'stateas', u'jersey', u'secretary'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (27): set([u'commonwealth', u'renegade state', u'city-state', u'superpower', u'rogue nation', u'rogue state', u'body politic', u'state', u'political entity', u'ally', u'power', u'foreign country', u'commonwealth country', u'nation', u'sea power', u'developing country', u'great power', u'suzerain', u'land', u'country', u'political unit', u'world power', u'city state', u'reich', u'dominion', u'res publica', u'major power'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'nation'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (118): set([u'office', u'unemployment', u'being', u'forthcomingness', u'existence', u'conditionality', u'integrity', u'death', u'state of nature', u'isomerism', u'imperfection', u'nonbeing', u'immatureness', u'omnipotence', u'antagonism', u'hostility', u'heterozygosity', u'unification', u'perfection', u'condition', u'beingness', u'paternity', u'level', u'delegacy', u'receivership', u'eternal damnation', u'activity', u'cleavage', u'dead letter', u'saving grace', u'state of affairs', u'motionlessness', u'damnation', u'immaturity', u'employment', u'preparation', u'power', u'flux', u'polyvalency', u'state', u'state of flux', u'ornamentation', u'inaction', u'state of grace', u'degree', u'impendence', u'imminence', u'tribalism', u'imminency', u'ne plus ultra', u'dependance', u'obligation', u'stage', u'separation', u'dystopia', u'enmity', u'disorder', u'dependence', u'motion', u'dependency', u'action', u'polyvalence', u'point', u'multivalence', u'multivalency', u'preparedness', u'plurality', u'illumination', u'impendency', u'utilization', u'union', u'annulment', u'attribute', u'medium', u'relationship', u'inactiveness', u'neotony', u'homozygosity', u'grace', u'skillfulness', u'non-issue', u'employ', u'maturity', u'utopia', u'freedom', u'wild', u'situation', u'feeling', u'nationhood', u'ground state', u'kalemia', u'omniscience', u'natural state', u'imminentness', u'end', u'imperfectness', u'revocation', u'agency', u'activeness', u'unity', u'conflict', u'status', u'enlargement', u'lifelessness', u'merchantability', u'ownership', u'position', u'flawlessness', u'wholeness', u'destruction', u'inactivity', u'readiness', u'turgor', u'temporary state', u'stillness', u'matureness', u'representation', u'order'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (1): set([u'agency'])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STATE
golden (12): set([u'province', u'commonwealth', u'administrative district', u'canadian province', u'italian region', u'american state', u'territorial division', u'eparchy', u'administrative division', u'state', u'australian state', u'soviet socialist republic'])
predicted (50): set([u'mandating', u'enforced', u'unitary', u'sovereign', u'obligee', u'requiring', u'mandate', u'mandates', u'centralized', u'existing', u'dual', u'intervention', u'affairs', u'quasi', u'imposition', u'apparatus', u'federal', u'furthermore', u'agency', u'guaranteed', u'system', u'imposing', u'regulation', u'guarantee', u'ksc', u'policy', u'regime', u'establishment', u'governmentally', u'bureaucracy', u'slusa', u'taxing', u'rules', u'statutes', u'enforcing', u'restricting', u'judiciary', u'governing', u'nation', u'authority', u'secrecy', u'procuratorates', u'abolishing', u'governments', u'monopoly', u'limiting', u'stripping', u'regulating', u'principle', u'sanctioning'])
intersection (0): set([])
STRIKE
golden (38): set([u'tap', u'peck', u'butt', u'slap', u'down', u'rap', u'touch', u'sclaff', u'mint', u'whip', u'push down', u'hew', u'pat', u'pull down', u'cut down', u'tip', u'create from raw stuff', u'knap', u'beat', u'bunt', u'strike', u'jab', u'dab', u'sideswipe', u'knock down', u'buffet', u'create from raw material', u'batter', u'strike hard', u'beak', u'knock about', u'coin', u'spur', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'batter'])
STRIKE
golden (41): set([u'tap', u'strike back', u'butt', u'slap', u'down', u'stroke', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'cut down', u'tip', u'knap', u'beat', u'attack', u'bunt', u'strike', u'jab', u'hit', u'dab', u'sideswipe', u'knock down', u'buffet', u'lash', u'slice', u'batter', u'strike hard', u'beak', u'knock about', u'assail', u'peck', u'spur', u'knock', u'chop', u'clout', u'pick', u'retaliate'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (4): set([u'batter', u'slice', u'hit', u'knock'])
STRIKE
golden (34): set([u'tap', u'beak', u'strike hard', u'down', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'spur', u'tip', u'knap', u'sideswipe', u'bunt', u'strike', u'jab', u'dab', u'beat', u'knock down', u'buffet', u'batter', u'slap', u'butt', u'knock about', u'peck', u'cut down', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (48): set([u'389th', u'aerial', u'mobility', u'ground', u'fg', u'581st', u'strategic', u'fighters', u'117s', u'airwing', u'bomber', u'bombing', u'group', u'447th', u'556th', u'attack', u'airborne', u'surveillance', u'449th', u'15es', u'crews', u'322d', u'452d', u'dact', u'exercise', u'342d', u'341st', u'463d', u'rocaf', u'interceptors', u'usaf', u'aircrews', u'glcm', u'aircraft', u'helicopter', u'observation', u'920th', u'bombers', u'fighter', u'missions', u'awacs', u'aggressor', u'air', u'capability', u'carrier', u'451st', u'455th', u'reconnaissance'])
intersection (0): set([])
STRIKE
golden (5): set([u'strike', u'smash', u'move', u'hit', u'displace'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (30): set([u'strike home', u'move', u'touch', u'cloud', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'instill', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'hit', u'sadden', u'infect', u'impress', u'strike dumb', u'zap', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'move', u'hit'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'hit'])
STRIKE
golden (6): set([u'accomplish', u'reach', u'come to', u'attain', u'strike', u'achieve'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (31): set([u'strike home', u'move', u'touch', u'cloud', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'instill', u'engrave', u'impress', u'surprise', u'strike a chord', u'stir', u'hit', u'sadden', u'infect', u'come to', u'strike dumb', u'strike', u'zap', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (12): set([u'regain', u'chance upon', u'discover', u'happen upon', u'come across', u'fall upon', u'attain', u'chance on', u'strike', u'come upon', u'find', u'light upon'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (30): set([u'strike home', u'move', u'touch', u'zap', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'cloud', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'hit', u'sadden', u'infect', u'impress', u'strike dumb', u'affect', u'trouble', u'awaken', u'sweep away', u'instill', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'move', u'hit'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (30): set([u'strike home', u'move', u'touch', u'cloud', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'instill', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'hit', u'sadden', u'infect', u'impress', u'strike dumb', u'zap', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'move', u'hit'])
STRIKE
golden (6): set([u'excise', u'expunge', u'scratch', u'cancel', u'strike', u'delete'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'slice', u'hit'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (8): set([u'impact', u'hit', u'bear upon', u'touch', u'bear on', u'touch on', u'affect', u'strike'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'hit'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'slice', u'hit'])
STRIKE
golden (34): set([u'tap', u'beak', u'strike hard', u'down', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'spur', u'tip', u'knap', u'sideswipe', u'bunt', u'strike', u'jab', u'dab', u'beat', u'knock down', u'buffet', u'batter', u'slap', u'butt', u'knock about', u'peck', u'cut down', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (34): set([u'tap', u'beak', u'strike hard', u'down', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'spur', u'tip', u'knap', u'sideswipe', u'bunt', u'strike', u'jab', u'dab', u'beat', u'knock down', u'buffet', u'batter', u'slap', u'butt', u'knock about', u'peck', u'cut down', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'batter'])
STRIKE
golden (34): set([u'tap', u'beak', u'strike hard', u'down', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'spur', u'tip', u'knap', u'sideswipe', u'bunt', u'strike', u'jab', u'dab', u'beat', u'knock down', u'buffet', u'batter', u'slap', u'butt', u'knock about', u'peck', u'cut down', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'batter'])
STRIKE
golden (6): set([u'excise', u'expunge', u'scratch', u'cancel', u'strike', u'delete'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'hit'])
STRIKE
golden (12): set([u'regain', u'chance upon', u'discover', u'happen upon', u'come across', u'fall upon', u'attain', u'chance on', u'strike', u'come upon', u'find', u'light upon'])
predicted (49): set([u'chowder', u'showtimeas', u'commish', u'weeds', u'regenesis', u'madtv', u'moonlighting', u'hairspray', u'toonage', u'glamma', u'cw', u'2007a2008', u'dozen', u'wire', u'beerfest', u'cavalcade', u'chalkzone', u'rejects', u'marrying', u'lone', u'aftra', u'donnellys', u'honeydripper', u'writers', u'leatherheads', u'funtastic', u'spike', u'pizzolo', u'90210', u'savages', u'dvds', u'betipul', u'flyboys', u'sovine', u'wgae', u'rawhide', u'spiketv', u'wga', u'friends', u'boondocks', u'guild', u'tarnation', u'yari', u'1984a1985', u'untouchables', u'sugarfoot', u'pearls', u'flipper', u'mad'])
intersection (0): set([])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'slice', u'hit'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (6): set([u'excise', u'expunge', u'scratch', u'cancel', u'strike', u'delete'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (32): set([u'strike home', u'move', u'touch', u'zap', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'take up', u'cloud', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'take', u'sadden', u'infect', u'impress', u'strike dumb', u'affect', u'trouble', u'awaken', u'sweep away', u'instill', u'disturb', u'alienate', u'assume', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (48): set([u'389th', u'aerial', u'mobility', u'ground', u'fg', u'581st', u'strategic', u'fighters', u'117s', u'airwing', u'bomber', u'bombing', u'group', u'447th', u'556th', u'attack', u'airborne', u'surveillance', u'449th', u'15es', u'crews', u'322d', u'452d', u'dact', u'exercise', u'342d', u'341st', u'463d', u'rocaf', u'interceptors', u'usaf', u'aircrews', u'glcm', u'aircraft', u'helicopter', u'observation', u'920th', u'bombers', u'fighter', u'missions', u'awacs', u'aggressor', u'air', u'capability', u'carrier', u'451st', u'455th', u'reconnaissance'])
intersection (0): set([])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (5): set([u'strike', u'create from raw material', u'coin', u'mint', u'create from raw stuff'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (3): set([u'strike', u'come to', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'hit'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (3): set([u'strike', u'come to', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'hit'])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'hit'])
STRIKE
golden (40): set([u'strike home', u'move', u'pass', u'touch', u'happen', u'occur', u'cloud', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'instill', u'fall out', u'hap', u'surprise', u'strike a chord', u'stir', u'take place', u'go on', u'sadden', u'infect', u'engrave', u'impress', u'strike dumb', u'strike', u'zap', u'fall', u'affect', u'trouble', u'awaken', u'sweep away', u'shine', u'disturb', u'come about', u'alienate', u'upset', u'pass off', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'hit'])
STRIKE
golden (32): set([u'strike home', u'move', u'touch', u'zap', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'take up', u'cloud', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'take', u'sadden', u'infect', u'impress', u'strike dumb', u'affect', u'trouble', u'awaken', u'sweep away', u'instill', u'disturb', u'alienate', u'assume', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (5): set([u'strike', u'resist', u'protest', u'dissent', u'walk out'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (1): set([u'protest'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (3): set([u'strike', u'come to', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'hit'])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'hit'])
STRIKE
golden (8): set([u'impact', u'hit', u'bear upon', u'touch', u'bear on', u'touch on', u'affect', u'strike'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'hit'])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (48): set([u'389th', u'aerial', u'mobility', u'ground', u'fg', u'581st', u'strategic', u'fighters', u'117s', u'airwing', u'bomber', u'bombing', u'group', u'447th', u'556th', u'attack', u'airborne', u'surveillance', u'449th', u'15es', u'crews', u'322d', u'452d', u'dact', u'exercise', u'342d', u'341st', u'463d', u'rocaf', u'interceptors', u'usaf', u'aircrews', u'glcm', u'aircraft', u'helicopter', u'observation', u'920th', u'bombers', u'fighter', u'missions', u'awacs', u'aggressor', u'air', u'capability', u'carrier', u'451st', u'455th', u'reconnaissance'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (34): set([u'tap', u'beak', u'strike hard', u'down', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'spur', u'tip', u'knap', u'sideswipe', u'bunt', u'strike', u'jab', u'dab', u'beat', u'knock down', u'buffet', u'batter', u'slap', u'butt', u'knock about', u'peck', u'cut down', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'batter'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'slice', u'hit'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (0): set([])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (34): set([u'tap', u'beak', u'strike hard', u'down', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'spur', u'tip', u'knap', u'sideswipe', u'bunt', u'strike', u'jab', u'dab', u'beat', u'knock down', u'buffet', u'batter', u'slap', u'butt', u'knock about', u'peck', u'cut down', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'batter'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (26): set([u'spang', u'bump into', u'bump', u'impinge on', u'connect', u'touch', u'glance', u'thud', u'bottom', u'bottom out', u'ping', u'butt against', u'stub', u'strike', u'spat', u'hit', u'clash', u'collide', u'bang', u'run into', u'knock', u'broadside', u'rear-end', u'knock against', u'jar against', u'collide with'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'hit'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (7): set([u'lick', u'puzzle out', u'work', u'solve', u'figure out', u'strike', u'work out'])
predicted (48): set([u'violence', u'agitation', u'teamster', u'demonstrations', u'unrest', u'protest', u'striking', u'demonstration', u'strikers', u'riot', u'ilwu', u'union', u'organizing', u'disturbances', u'walkout', u'labor', u'riots', u'teamsters', u'arrests', u'mutiny', u'crackdown', u'panic', u'bscp', u'insurrection', u'umwa', u'swoc', u'rioting', u'secessionists', u'miners', u'iww', u'ifwu', u'unionization', u'shearers', u'strikes', u'organising', u'racketeering', u'nationwide', u'wfm', u'protesting', u'strikebreakers', u'revolt', u'violent', u'agitations', u'fiasco', u'trbovich', u'picketing', u'twua', u'spontaneous'])
intersection (0): set([])
STRIKE
golden (13): set([u'lick', u'hit', u'touch', u'puzzle out', u'work', u'create from raw stuff', u'work out', u'create from raw material', u'solve', u'figure out', u'strike', u'coin', u'mint'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'hit'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (34): set([u'tap', u'beak', u'strike hard', u'down', u'rap', u'touch', u'sclaff', u'whip', u'push down', u'hew', u'pat', u'pull down', u'spur', u'tip', u'knap', u'sideswipe', u'bunt', u'strike', u'jab', u'dab', u'beat', u'knock down', u'buffet', u'batter', u'slap', u'butt', u'knock about', u'peck', u'cut down', u'knock', u'chop', u'clout', u'pick', u'lash'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'knock', u'batter'])
STRIKE
golden (29): set([u'strike home', u'move', u'touch', u'instill', u'smite', u'ingrain', u'jar', u'pierce', u'strike a note', u'zap', u'engrave', u'strike', u'surprise', u'strike a chord', u'stir', u'sadden', u'infect', u'impress', u'strike dumb', u'cloud', u'affect', u'trouble', u'awaken', u'sweep away', u'disturb', u'alienate', u'upset', u'hit home', u'sweep off'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (1): set([u'move'])
STRIKE
golden (9): set([u'slice', u'strike back', u'attack', u'chop', u'retaliate', u'stroke', u'assail', u'strike', u'hit'])
predicted (49): set([u'force', u'misdirect', u'ensnare', u'incapacitate', u'bounce', u'mbc', u'jump', u'entangle', u'ball', u'opponents', u'blow', u'explode', u'use', u'slice', u'injure', u'fight', u'attackers', u'restrain', u'snap', u'roll', u'opponent', u'dodge', u'shrug', u'move', u'hit', u'knock', u'disarm', u'dive', u'outmaneuver', u'push', u'disable', u'batter', u'hurl', u'spin', u'throw', u'retreat', u'shoot', u'smash', u'execute', u'eject', u'drop', u'against', u'disengage', u'turn', u'switch', u'opponentas', u'jutah', u'impale', u'attacking'])
intersection (2): set([u'slice', u'hit'])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (8): set([u'unattackable', u'secure', u'unassailable', u'solid', u'impregnable', u'inviolable', u'substantial', u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (8): set([u'unattackable', u'secure', u'unassailable', u'solid', u'impregnable', u'inviolable', u'substantial', u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (8): set([u'unattackable', u'secure', u'unassailable', u'solid', u'impregnable', u'inviolable', u'substantial', u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'heavy', u'strengthening', u'tough', u'cannonade', u'frantic', u'shaky', u'steady', u'outran', u'pulling', u'battered', u'close', u'nevertheless', u'30hours', u'decent', u'nailbiter', u'pounding', u'stalled', u'200yards', u'respectable', u'minimal', u'100mph', u'good', u'holding', u'spectacular', u'frontal', u'weak', u'rain', u'14a13', u'suffering', u'dismal', u'ernesto', u'despite', u'sustained', u'kika', u'intense', u'chasing', u'surprising', u'gale', u'brilliant', u'shock', u'stronger', u'surge', u'solid', u'stunning', u'amazingly', u'counterattacking', u'restrengthened', u'turnover', u'disorganized', u'struggle'])
intersection (0): set([])
STRONG
golden (3): set([u'strong', u'potent', u'stiff'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (3): set([u'solid', u'strong', u'substantial'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (4): set([u'solid', u'strong', u'substantial', u'potent'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (3): set([u'strong', u'potent', u'stiff'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'heavy', u'strengthening', u'tough', u'cannonade', u'frantic', u'shaky', u'steady', u'outran', u'pulling', u'battered', u'close', u'nevertheless', u'30hours', u'decent', u'nailbiter', u'pounding', u'stalled', u'200yards', u'respectable', u'minimal', u'100mph', u'good', u'holding', u'spectacular', u'frontal', u'weak', u'rain', u'14a13', u'suffering', u'dismal', u'ernesto', u'despite', u'sustained', u'kika', u'intense', u'chasing', u'surprising', u'gale', u'brilliant', u'shock', u'stronger', u'surge', u'solid', u'stunning', u'amazingly', u'counterattacking', u'restrengthened', u'turnover', u'disorganized', u'struggle'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (49): set([u'favoured', u'strongly', u'liberal', u'nationalist', u'favouring', u'pro', u'advocated', u'separatist', u'undermining', u'attitude', u'openly', u'intransigent', u'parliamentarism', u'staunch', u'vociferously', u'sympathy', u'monarchist', u'vehement', u'reactionary', u'pursued', u'support', u'political', u'expansionist', u'fervent', u'policy', u'moderate', u'sympathies', u'minority', u'stance', u'faction', u'hostility', u'staunchly', u'opposition', u'republicanism', u'isolationism', u'hardline', u'advocating', u'hostile', u'neutrality', u'forceful', u'stronger', u'conciliatory', u'interventionist', u'anticlericalism', u'conservatism', u'agenda', u'ideological', u'democratic', u'partisan'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'exhibit', u'scatterers', u'nonporous', u'glassy', u'tough', u'structureless', u'violently', u'comparatively', u'nimbostratus', u'pleochroism', u'highly', u'filamentary', u'brittle', u'fine', u'relatively', u'spherulites', u'dense', u'acicular', u'overly', u'exhibits', u'symmetric', u'low', u'crystallites', u'heavier', u'viscous', u'intergrown', u'lack', u'form', u'slight', u'very', u'shallow', u'weak', u'neutral', u'rigid', u'fluorescing', u'thixotropic', u'producing', u'diffuse', u'continuous', u'crazing', u'essentially', u'weakly', u'light', u'stronger', u'sufficiently', u'unstable', u'lignified', u'unusually', u'stable', u'dilatant'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'heavy', u'strengthening', u'tough', u'cannonade', u'frantic', u'shaky', u'steady', u'outran', u'pulling', u'battered', u'close', u'nevertheless', u'30hours', u'decent', u'nailbiter', u'pounding', u'stalled', u'200yards', u'respectable', u'minimal', u'100mph', u'good', u'holding', u'spectacular', u'frontal', u'weak', u'rain', u'14a13', u'suffering', u'dismal', u'ernesto', u'despite', u'sustained', u'kika', u'intense', u'chasing', u'surprising', u'gale', u'brilliant', u'shock', u'stronger', u'surge', u'solid', u'stunning', u'amazingly', u'counterattacking', u'restrengthened', u'turnover', u'disorganized', u'struggle'])
intersection (0): set([])
STRONG
golden (2): set([u'strong', u'potent'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (4): set([u'strong', u'hard', u'potent', u'stiff'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'stubborn', u'somewhat', u'willed', u'powerful', u'rebellious', u'cheerful', u'gentle', u'thoughtful', u'worldly', u'formidable', u'subtle', u'empathetic', u'generous', u'genuine', u'harsh', u'childish', u'slight', u'likeable', u'graceful', u'confident', u'charisma', u'arrogant', u'seductive', u'dignified', u'personality', u'clever', u'womanly', u'easygoing', u'nature', u'shallow', u'weak', u'charm', u'stoic', u'disposition', u'amiable', u'peculiar', u'naturally', u'pleasing', u'romantic', u'brilliant', u'forceful', u'compassionate', u'attitude', u'sensitive', u'boyish', u'frivolous', u'childlike', u'quick', u'passionate', u'youthful'])
intersection (0): set([])
STRONG
golden (1): set([u'strong'])
predicted (50): set([u'outlook', u'fosters', u'orientation', u'links', u'stronger', u'fostering', u'dynamic', u'focus', u'intellectual', u'integration', u'diverse', u'lively', u'broader', u'openness', u'wider', u'pluralistic', u'concern', u'impact', u'renewed', u'longstanding', u'distinct', u'broad', u'engagement', u'character', u'emphasis', u'oriented', u'euroclio', u'promoting', u'rich', u'ethos', u'consistent', u'continuity', u'sharing', u'diversity', u'social', u'emphases', u'commitment', u'cultural', u'reflecting', u'familial', u'robust', u'considerable', u'maintaining', u'inclusiveness', u'vibrant', u'multicultural', u'traditional', u'cultivating', u'positive', u'generational'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (20): set([u'state', u'urge', u'make a motion', u'advocate', u'intimate', u'propose', u'move', u'feed back', u'throw out', u'make out', u'declare', u'imply', u'proposition', u'submit', u'recommend', u'suggest', u'posit', u'advise', u'advance', u'put forward'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (10): set([u'intimate', u'suggest', u'hint', u'adumbrate', u'advert', u'allude', u'insinuate', u'convey', u'clue in', u'touch'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (26): set([u'move', u'proposition', u'convey', u'clue in', u'touch', u'put forward', u'hint', u'suggest', u'throw out', u'submit', u'advert', u'allude', u'state', u'insinuate', u'recommend', u'advise', u'urge', u'intimate', u'propose', u'advocate', u'adumbrate', u'advance', u'make a motion', u'feed back', u'posit', u'declare'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (12): set([u'intimate', u'suggest', u'hint', u'adumbrate', u'advert', u'allude', u'imply', u'insinuate', u'make out', u'convey', u'clue in', u'touch'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (12): set([u'intimate', u'suggest', u'hint', u'adumbrate', u'advert', u'allude', u'imply', u'insinuate', u'make out', u'convey', u'clue in', u'touch'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (20): set([u'state', u'urge', u'make a motion', u'advocate', u'intimate', u'propose', u'move', u'feed back', u'throw out', u'make out', u'declare', u'imply', u'proposition', u'submit', u'recommend', u'suggest', u'posit', u'advise', u'advance', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (12): set([u'evince', u'paint a picture', u'show', u'suggest', u'express', u'smack', u'inculpate', u'incriminate', u'imply', u'evoke', u'reek', u'smell'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (1): set([u'show'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (49): set([u'pre', u'attest', u'epigraphic', u'datings', u'findings', u'hypothesized', u'predynastic', u'evidence', u'habitation', u'indicates', u'likely', u'proves', u'archaeological', u'contemporaneous', u'unearthed', u'uncovered', u'earliest', u'bmac', u'artifacts', u'prehistorical', u'indicate', u'disagree', u'postulated', u'suggesting', u'probably', u'indicating', u'archeologists', u'neolithic', u'predated', u'microlithic', u'earlier', u'archeological', u'hypothesis', u'survived', u'archaeologists', u'archaeologically', u'revealed', u'scholars', u'predates', u'pottery', u'prehistoric', u'prehistory', u'predate', u'suggests', u'dated', u'solutrean', u'finds', u'fact', u'remains'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (12): set([u'evince', u'paint a picture', u'show', u'suggest', u'express', u'smack', u'inculpate', u'incriminate', u'imply', u'evoke', u'reek', u'smell'])
predicted (49): set([u'pre', u'attest', u'epigraphic', u'datings', u'findings', u'hypothesized', u'predynastic', u'evidence', u'habitation', u'indicates', u'likely', u'proves', u'archaeological', u'contemporaneous', u'unearthed', u'uncovered', u'earliest', u'bmac', u'artifacts', u'prehistorical', u'indicate', u'disagree', u'postulated', u'suggesting', u'probably', u'indicating', u'archeologists', u'neolithic', u'predated', u'microlithic', u'earlier', u'archeological', u'hypothesis', u'survived', u'archaeologists', u'archaeologically', u'revealed', u'scholars', u'predates', u'pottery', u'prehistoric', u'prehistory', u'predate', u'suggests', u'dated', u'solutrean', u'finds', u'fact', u'remains'])
intersection (0): set([])
SUGGEST
golden (20): set([u'state', u'urge', u'make a motion', u'advocate', u'intimate', u'propose', u'move', u'feed back', u'throw out', u'make out', u'declare', u'imply', u'proposition', u'submit', u'recommend', u'suggest', u'posit', u'advise', u'advance', u'put forward'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (20): set([u'state', u'urge', u'make a motion', u'advocate', u'intimate', u'propose', u'move', u'feed back', u'throw out', u'make out', u'declare', u'imply', u'proposition', u'submit', u'recommend', u'suggest', u'posit', u'advise', u'advance', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (12): set([u'hint', u'suggest', u'intimate', u'make out', u'advert', u'allude', u'imply', u'insinuate', u'adumbrate', u'convey', u'clue in', u'touch'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (14): set([u'paint a picture', u'imply', u'intimate', u'suggest', u'express', u'smack', u'inculpate', u'incriminate', u'evince', u'evoke', u'show', u'reek', u'smell', u'make out'])
predicted (50): set([u'claim', u'untrue', u'conclude', u'indeed', u'related', u'speculates', u'plausible', u'implying', u'imply', u'unlikely', u'concludes', u'claimed', u'further', u'allege', u'conjectures', u'believe', u'adds', u'likely', u'confirm', u'asserts', u'furthermore', u'stated', u'claiming', u'indicate', u'certain', u'suggesting', u'overlook', u'alleges', u'indicating', u'suggestion', u'possible', u'speculated', u'assert', u'mention', u'possibility', u'erroneously', u'speculate', u'deny', u'reported', u'assume', u'contradict', u'say', u'believes', u'coincidence', u'contrary', u'doubted', u'assumed', u'believed', u'claims', u'proof'])
intersection (1): set([u'imply'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (17): set([u'urge', u'make a motion', u'move', u'advance', u'propose', u'advocate', u'feed back', u'throw out', u'submit', u'declare', u'state', u'proposition', u'recommend', u'suggest', u'posit', u'advise', u'put forward'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (2): set([u'posit', u'propose'])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'claim', u'consider', u'economists', u'conclude', u'relate', u'address', u'anticipate', u'insist', u'leads', u'say', u'bias', u'challenge', u'arise', u'fail', u'alternative', u'illustrate', u'contend', u'lead', u'acknowledge', u'purport', u'demonstrate', u'skeptics', u'might', u'cite', u'conflicting', u'herzberg', u'distracts', u'propose', u'proponents', u'assert', u'posit', u'biases', u'authors', u'affect', u'objections', u'believe', u'undermine', u'acknowledges', u'assume', u'contradict', u'pertain', u'addressed', u'agree', u'ignore', u'suggests', u'disregard', u'opinion', u'argue', u'generalizations', u'stating'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
SUGGEST
golden (4): set([u'suggest', u'imply', u'make out', u'intimate'])
predicted (50): set([u'concluded', u'exhibit', u'beneficial', u'polygenic', u'findings', u'show', u'hypothesized', u'characteristics', u'mutations', u'evidence', u'morphologic', u'suspected', u'shown', u'dna', u'pharmacokinetic', u'explain', u'hypothesize', u'indicate', u'genetic', u'karyotypic', u'significance', u'suggesting', u'ultrastructural', u'demonstrated', u'antiangiogenic', u'pathogenic', u'showing', u'genes', u'genetically', u'hypothesis', u'demonstrate', u'affect', u'analyses', u'recent', u'suggested', u'reveal', u'uncertain', u'showed', u'schreckstoff', u'papillomaviruses', u'study', u'analysis', u'specific', u'suggests', u'mimic', u'experimental', u'phenotypic', u'studies', u'interestingly', u'researchers'])
intersection (0): set([])
TRACE
golden (6): set([u'trace', u'hint', u'small indefinite quantity', u'suggestion', u'small indefinite amount', u'spark'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (10): set([u'ghost', u'trace', u'hint', u'small indefinite quantity', u'proposition', u'suggestion', u'proffer', u'touch', u'small indefinite amount', u'spark'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (3): set([u'tracing', u'drawing', u'trace'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (6): set([u'ghost', u'trace', u'proposition', u'suggestion', u'proffer', u'touch'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (6): set([u'ghost', u'trace', u'proposition', u'suggestion', u'proffer', u'touch'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (6): set([u'trace', u'hint', u'small indefinite quantity', u'suggestion', u'small indefinite amount', u'spark'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (6): set([u'trace', u'hint', u'small indefinite quantity', u'suggestion', u'small indefinite amount', u'spark'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (12): set([u'vestige', u'suggestion', u'tincture', u'trace', u'hint', u'small indefinite quantity', u'indication', u'indicant', u'footprint', u'small indefinite amount', u'spark', u'shadow'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (6): set([u'ghost', u'trace', u'proposition', u'suggestion', u'proffer', u'touch'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (12): set([u'ghost', u'vestige', u'tincture', u'trace', u'suggestion', u'touch', u'proposition', u'indication', u'indicant', u'proffer', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (7): set([u'vestige', u'tincture', u'trace', u'indication', u'indicant', u'footprint', u'shadow'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (10): set([u'canvas', u'return', u'trace', u'retrace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (20): set([u'canvas', u'hunt', u'trace', u'go after', u'analyze', u'study', u'chase after', u'analyse', u'tail', u'dog', u'trail', u'ferret', u'tag', u'track', u'canvass', u'follow', u'give chase', u'hound', u'examine', u'chase'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (3): set([u're-create', u'copy', u'trace'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (10): set([u'delineate', u'draw', u'trace', u'describe', u'construct', u'inscribe', u'write', u'circumscribe', u'line', u'mark'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (1): set([u'construct'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (10): set([u'delineate', u'draw', u'trace', u'describe', u'construct', u'inscribe', u'write', u'circumscribe', u'line', u'mark'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (3): set([u're-create', u'copy', u'trace'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (10): set([u'delineate', u'draw', u'trace', u'describe', u'construct', u'inscribe', u'write', u'circumscribe', u'line', u'mark'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (10): set([u'delineate', u'draw', u'trace', u'describe', u'construct', u'inscribe', u'write', u'circumscribe', u'line', u'mark'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (1): set([u'construct'])
TRACE
golden (3): set([u're-create', u'copy', u'trace'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (10): set([u'canvas', u'return', u'trace', u'retrace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (20): set([u'canvas', u'chase after', u'trace', u'go after', u'study', u'hunt', u'analyse', u'dog', u'hound', u'trail', u'ferret', u'tag', u'tail', u'track', u'canvass', u'follow', u'analyze', u'chase', u'examine', u'give chase'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (13): set([u'chase after', u'trace', u'go after', u'hunt', u'dog', u'trail', u'ferret', u'tag', u'tail', u'track', u'give chase', u'hound', u'chase'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (4): set([u'continue', u'proceed', u'trace', u'go forward'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (17): set([u'delineate', u'canvas', u'analyze', u'trace', u'study', u'describe', u'analyse', u'draw', u'construct', u'inscribe', u'write', u'examine', u'follow', u'canvass', u'circumscribe', u'line', u'mark'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'walland', u'battlefield', u'cataloochee', u'exists', u'spruceton', u'davidsonville', u'clarysville', u'remnant', u'bucksnort', u'barnhartvale', u'harpeth', u'mill', u'intact', u'bartonville', u'moosup', u'olentangy', u'still', u'evansburg', u'hollyford', u'remains', u'cloudland', u'pigeon', u'brookmans', u'tanasi', u'vicksburg', u'wabash', u'powell', u'today', u'cowpasture', u'survives', u'railbed', u'glenburnie', u'bidwell', u'mounds', u'tilgate', u'withlacoochee', u'swampoodle', u'duncans', u'oologah', u'now', u'abandoned', u'ghost', u'longer', u'thurmont', u'sycamore', u'natchez', u'goatman', u'mooreland', u'pumphouse', u'original'])
intersection (0): set([])
TRACE
golden (10): set([u'delineate', u'draw', u'trace', u'describe', u'construct', u'inscribe', u'write', u'circumscribe', u'line', u'mark'])
predicted (50): set([u'hydrocarbons', u'copper', u'dilute', u'iodine', u'sulfates', u'nitrates', u'constituents', u'sulphates', u'byproducts', u'metals', u'solutions', u'zinc', u'phosphates', u'inorganic', u'arsenic', u'bicarbonates', u'ammonia', u'mercury', u'containing', u'polyelectrolytes', u'fluorides', u'compounds', u'nonmetals', u'sulfate', u'elemental', u'content', u'nanoparticles', u'mixtures', u'sulfur', u'occurring', u'silicates', u'selenium', u'dissolved', u'cyanides', u'apatite', u'thorium', u'impurities', u'oxides', u'chemicals', u'cadmium', u'radioactive', u'minerals', u'phosphorus', u'organic', u'mineral', u'uranium', u'calcium', u'oxide', u'iron', u'silica'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (4): set([u'continue', u'proceed', u'trace', u'go forward'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (4): set([u'continue', u'proceed', u'trace', u'go forward'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (10): set([u'delineate', u'draw', u'trace', u'describe', u'construct', u'inscribe', u'write', u'circumscribe', u'line', u'mark'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (48): set([u'origin', u'migrated', u'adopt', u'consider', u'pertaining', u'owe', u'ancestral', u'belonged', u'describe', u'back', u'perpetuate', u'date', u'linage', u'roots', u'ancestors', u'belong', u'bequeathed', u'belongs', u'homeland', u'relate', u'dating', u'forefathers', u'refer', u'homelands', u'belonging', u'beginnings', u'traceable', u'descendents', u'ancestry', u'differentiate', u'antecedents', u'distinguish', u'testifies', u'come', u'lineage', u'origins', u'tracing', u'traced', u'revert', u'according', u'claim', u'derive', u'descended', u'sakizaya', u'forebears', u'retain', u'designate', u'traces'])
intersection (0): set([])
TRACE
golden (11): set([u'canvas', u'proceed', u'trace', u'study', u'analyse', u'examine', u'continue', u'go forward', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'domain', u'orientation', u'reference', u'precisely', u'unbounded', u'preserving', u'discretization', u'computes', u'inverting', u'parameterization', u'linearized', u'conversely', u'minterm', u'inverse', u'graph', u'construct', u'smoothing', u'calculation', u'therefore', u'diagonalization', u'input', u'defining', u'minimal', u'bandform', u'map', u'non', u'fiber', u'string', u'form', u'equivalent', u'mapping', u'scaling', u'equaliser', u'particular', u'linearization', u'path', u'parameter', u'implicit', u'structure', u'cdf', u'characteristic', u'partition', u'parameterized', u'element', u'filter', u'discretized', u'expression', u'representation', u'fixed', u'parametric'])
intersection (0): set([])
TRACE
golden (3): set([u're-create', u'copy', u'trace'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (0): set([])
TRACE
golden (8): set([u'canvas', u'trace', u'study', u'analyse', u'examine', u'canvass', u'follow', u'analyze'])
predicted (50): set([u'harm', u'renesmee', u'franki', u'doubting', u'alkyone', u'hendricksson', u'examine', u'recollection', u'closets', u'suspecting', u'nadara', u'any', u'disappear', u'maritza', u'hesitation', u'knowledge', u'confirm', u'crew', u'avail', u'kirk', u'secret', u'spock', u'whatsoever', u'memory', u'xylok', u'vanished', u'karolin', u'brainer', u'locate', u'mzu', u'thankfully', u'missing', u'explanation', u'deformity', u'noticing', u'clue', u'bothering', u'choice', u'vanish', u'compunctions', u'conceal', u'linnet', u'harming', u'intention', u'without', u'forewarning', u'threat', u'hindrance', u'warning', u'wonders'])
intersection (1): set([u'examine'])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (39): set([u'load', u'mail', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'channelize', u'transport', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'translate', u'channel', u'project', u'send out', u'offload', u'send off', u'get', u'communicate', u'displace', u'spool', u'propagate', u'offset', u'post', u'bring', u'commit', u'institutionalize', u'channelise', u'turn', u'release', u'get off', u'fetch'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (39): set([u'load', u'mail', u'move', u'upload', u'bring', u'export', u'convey', u'translocate', u'carry', u'download', u'channelize', u'transport', u'project', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'translate', u'channel', u'send out', u'offload', u'send off', u'get', u'ftp', u'communicate', u'displace', u'spool', u'get off', u'offset', u'post', u'commit', u'institutionalize', u'channelise', u'turn', u'release', u'propagate', u'fetch'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (3): set([u'transfer', u'displace', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (27): set([u'load', u'move', u'institutionalize', u'carry', u'export', u'convey', u'translocate', u'download', u'transplant', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'mail', u'post', u'upload', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'project', u'send out', u'translate', u'get', u'transfer', u'move', u'displace', u'send', u'channelise', u'bring', u'propagate', u'channel', u'convey', u'transmit', u'release', u'channelize', u'fetch', u'transport', u'turn'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'desacralize', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'pass', u'interchange', u'move', u'offload', u'send off', u'exchange', u'communicate', u'reach', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'institutionalize', u'negociate', u'commit', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (3): set([u'transfer', u'displace', u'transplant'])
predicted (50): set([u'ions', u'macromolecule', u'desorb', u'undergoes', u'energy', u'adsorb', u'proton', u'electrostatic', u'analyte', u'steric', u'destabilize', u'kinetic', u'fluorophore', u'solvation', u'dissociation', u'absorption', u'chromophore', u'radiative', u'psii', u'adsorption', u'nucleation', u'potential', u'redox', u'molecular', u'solvated', u'ionizes', u'excitation', u'interactions', u'forming', u'material', u'molecule', u'conversion', u'ionization', u'chemiosmosis', u'electron', u'intrinsic', u'adsorbate', u'acceptor', u'diffusion', u'intermolecular', u'interaction', u'substrate', u'coupling', u'depolymerization', u'adsorbed', u'solutes', u'electrochemical', u'electrons', u'ionic', u'charged'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (19): set([u'project', u'send out', u'translate', u'get', u'transfer', u'move', u'displace', u'send', u'channelise', u'bring', u'propagate', u'channel', u'convey', u'transmit', u'release', u'channelize', u'fetch', u'transport', u'turn'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (3): set([u'transfer', u'displace', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'garl', u'depart', u'intercity', u'trimet', u'keiym', u'bound', u'metrorail', u'feeder', u'connections', u'connect', u'mainline', u'caltrain', u'tcat', u'commuter', u'service', u'travel', u'downeaster', u'terminal', u'branch', u'shuttle', u'yrt', u'timetabled', u'eurostar', u'fukutoshin', u'passengers', u'inbound', u'rail', u'express', u'stop', u'nctd', u'direct', u'terminals', u'seabus', u'intracity', u'lrt', u'commuters', u'marketafrankford', u'amtrak', u'r2', u'trains', u'metra', u'intermodal', u'mrt', u'connection', u'continue', u'subway', u'accessibility', u'bx12', u'vanpools', u'operate'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (10): set([u'exchange', u'transfer', u'remove', u'second', u'delegate', u'shift', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (1): set([u'remove'])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'ions', u'macromolecule', u'desorb', u'undergoes', u'energy', u'adsorb', u'proton', u'electrostatic', u'analyte', u'steric', u'destabilize', u'kinetic', u'fluorophore', u'solvation', u'dissociation', u'absorption', u'chromophore', u'radiative', u'psii', u'adsorption', u'nucleation', u'potential', u'redox', u'molecular', u'solvated', u'ionizes', u'excitation', u'interactions', u'forming', u'material', u'molecule', u'conversion', u'ionization', u'chemiosmosis', u'electron', u'intrinsic', u'adsorbate', u'acceptor', u'diffusion', u'intermolecular', u'interaction', u'substrate', u'coupling', u'depolymerization', u'adsorbed', u'solutes', u'electrochemical', u'electrons', u'ionic', u'charged'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (3): set([u'transfer', u'remove', u'shift'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (1): set([u'remove'])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'desacralize', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'pass', u'interchange', u'move', u'offload', u'send off', u'exchange', u'communicate', u'reach', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'institutionalize', u'negociate', u'commit', u'turn over', u'assign'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'desacralize', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'pass', u'interchange', u'move', u'offload', u'send off', u'exchange', u'communicate', u'reach', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'institutionalize', u'negociate', u'commit', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (22): set([u'pass on', u'give', u'distribute', u'alien', u'convey', u'pass', u'transplant', u'interchange', u'transfer', u'desacralize', u'exchange', u'reach', u'transpose', u'hand', u'turn over', u'demise', u'change', u'secularize', u'alienate', u'shift', u'negociate', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (3): set([u'transfer', u'displace', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'desacralize', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'pass', u'interchange', u'move', u'offload', u'send off', u'exchange', u'communicate', u'reach', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'institutionalize', u'negociate', u'commit', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (3): set([u'transfer', u'displace', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (19): set([u'project', u'send out', u'translate', u'get', u'transfer', u'move', u'displace', u'send', u'channelise', u'bring', u'propagate', u'channel', u'convey', u'transmit', u'release', u'channelize', u'fetch', u'transport', u'turn'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (39): set([u'load', u'mail', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'channelize', u'transport', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'translate', u'channel', u'project', u'send out', u'offload', u'send off', u'get', u'communicate', u'displace', u'spool', u'propagate', u'offset', u'post', u'bring', u'commit', u'institutionalize', u'channelise', u'turn', u'release', u'get off', u'fetch'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (1): set([u'bring'])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'garl', u'depart', u'intercity', u'trimet', u'keiym', u'bound', u'metrorail', u'feeder', u'connections', u'connect', u'mainline', u'caltrain', u'tcat', u'commuter', u'service', u'travel', u'downeaster', u'terminal', u'branch', u'shuttle', u'yrt', u'timetabled', u'eurostar', u'fukutoshin', u'passengers', u'inbound', u'rail', u'express', u'stop', u'nctd', u'direct', u'terminals', u'seabus', u'intracity', u'lrt', u'commuters', u'marketafrankford', u'amtrak', u'r2', u'trains', u'metra', u'intermodal', u'mrt', u'connection', u'continue', u'subway', u'accessibility', u'bx12', u'vanpools', u'operate'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'project', u'send out', u'translate', u'get', u'transfer', u'move', u'displace', u'send', u'channelise', u'bring', u'propagate', u'channel', u'convey', u'transmit', u'release', u'channelize', u'fetch', u'transport', u'turn'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (10): set([u'exchange', u'transfer', u'remove', u'second', u'delegate', u'shift', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'garl', u'depart', u'intercity', u'trimet', u'keiym', u'bound', u'metrorail', u'feeder', u'connections', u'connect', u'mainline', u'caltrain', u'tcat', u'commuter', u'service', u'travel', u'downeaster', u'terminal', u'branch', u'shuttle', u'yrt', u'timetabled', u'eurostar', u'fukutoshin', u'passengers', u'inbound', u'rail', u'express', u'stop', u'nctd', u'direct', u'terminals', u'seabus', u'intracity', u'lrt', u'commuters', u'marketafrankford', u'amtrak', u'r2', u'trains', u'metra', u'intermodal', u'mrt', u'connection', u'continue', u'subway', u'accessibility', u'bx12', u'vanpools', u'operate'])
intersection (0): set([])
TRANSFER
golden (4): set([u'transfer', u'shift', u'transpose', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'desacralize', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'pass', u'interchange', u'move', u'offload', u'send off', u'exchange', u'communicate', u'reach', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'institutionalize', u'negociate', u'commit', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'desacralize', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'pass', u'interchange', u'move', u'offload', u'send off', u'exchange', u'communicate', u'reach', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'institutionalize', u'negociate', u'commit', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'garl', u'depart', u'intercity', u'trimet', u'keiym', u'bound', u'metrorail', u'feeder', u'connections', u'connect', u'mainline', u'caltrain', u'tcat', u'commuter', u'service', u'travel', u'downeaster', u'terminal', u'branch', u'shuttle', u'yrt', u'timetabled', u'eurostar', u'fukutoshin', u'passengers', u'inbound', u'rail', u'express', u'stop', u'nctd', u'direct', u'terminals', u'seabus', u'intracity', u'lrt', u'commuters', u'marketafrankford', u'amtrak', u'r2', u'trains', u'metra', u'intermodal', u'mrt', u'connection', u'continue', u'subway', u'accessibility', u'bx12', u'vanpools', u'operate'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (36): set([u'pass on', u'give', u'move', u'alien', u'bring', u'convey', u'pass', u'channelize', u'transport', u'interchange', u'transfer', u'exchange', u'send', u'channelise', u'desacralize', u'transmit', u'translate', u'channel', u'send out', u'distribute', u'get', u'reach', u'displace', u'hand', u'propagate', u'demise', u'change', u'secularize', u'alienate', u'fetch', u'project', u'turn', u'negociate', u'release', u'turn over', u'assign'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (3): set([u'transfer', u'remove', u'shift'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (1): set([u'remove'])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'pass', u'carry', u'interchange', u'transfer', u'charge', u'send', u'desacralize', u'institutionalise', u'transmit', u'import', u'ftp', u'move', u'offload', u'send off', u'exchange', u'reach', u'communicate', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'commit', u'institutionalize', u'translocate', u'negociate', u'turn over', u'assign'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (3): set([u'transfer', u'displace', u'transplant'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (0): set([])
TRANSFER
golden (8): set([u'exchange', u'transfer', u'second', u'delegate', u'reassign', u'depute', u'assign', u'designate'])
predicted (50): set([u'garl', u'depart', u'intercity', u'trimet', u'keiym', u'bound', u'metrorail', u'feeder', u'connections', u'connect', u'mainline', u'caltrain', u'tcat', u'commuter', u'service', u'travel', u'downeaster', u'terminal', u'branch', u'shuttle', u'yrt', u'timetabled', u'eurostar', u'fukutoshin', u'passengers', u'inbound', u'rail', u'express', u'stop', u'nctd', u'direct', u'terminals', u'seabus', u'intracity', u'lrt', u'commuters', u'marketafrankford', u'amtrak', u'r2', u'trains', u'metra', u'intermodal', u'mrt', u'connection', u'continue', u'subway', u'accessibility', u'bx12', u'vanpools', u'operate'])
intersection (0): set([])
TRANSFER
golden (43): set([u'load', u'pass on', u'give', u'distribute', u'mail', u'upload', u'alien', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'desacralize', u'send', u'charge', u'institutionalise', u'transmit', u'import', u'pass', u'interchange', u'move', u'offload', u'send off', u'exchange', u'communicate', u'reach', u'displace', u'hand', u'spool', u'get off', u'demise', u'offset', u'post', u'change', u'secularize', u'alienate', u'institutionalize', u'negociate', u'commit', u'turn over', u'assign'])
predicted (50): set([u'garl', u'depart', u'intercity', u'trimet', u'keiym', u'bound', u'metrorail', u'feeder', u'connections', u'connect', u'mainline', u'caltrain', u'tcat', u'commuter', u'service', u'travel', u'downeaster', u'terminal', u'branch', u'shuttle', u'yrt', u'timetabled', u'eurostar', u'fukutoshin', u'passengers', u'inbound', u'rail', u'express', u'stop', u'nctd', u'direct', u'terminals', u'seabus', u'intracity', u'lrt', u'commuters', u'marketafrankford', u'amtrak', u'r2', u'trains', u'metra', u'intermodal', u'mrt', u'connection', u'continue', u'subway', u'accessibility', u'bx12', u'vanpools', u'operate'])
intersection (0): set([])
TRANSFER
golden (19): set([u'exchange', u'interchange', u'negociate', u'pass on', u'give', u'alienate', u'distribute', u'reach', u'transfer', u'hand', u'alien', u'desacralize', u'turn over', u'demise', u'convey', u'pass', u'assign', u'change', u'secularize'])
predicted (50): set([u'authorize', u'prevent', u'reduce', u'suspend', u'revoke', u'secure', u'confiscate', u'compel', u'terminate', u'obtain', u'seizure', u'restrict', u'bring', u'allowed', u'circumvent', u'agrees', u'waive', u'granting', u'grant', u'authorise', u'transference', u'adjust', u'take', u'limit', u'reinstate', u'authorization', u'compensate', u'acquire', u'reconsider', u'legitimacy', u'pursuant', u'refusal', u'failure', u'accept', u'rescind', u'relinquish', u'deprive', u'deny', u'assets', u'assume', u'confirm', u'remove', u'withhold', u'inform', u'renew', u'stripping', u'contrary', u'divest', u'approve', u'enforce'])
intersection (0): set([])
TRANSFER
golden (26): set([u'load', u'move', u'upload', u'download', u'export', u'convey', u'translocate', u'carry', u'ftp', u'transfer', u'send', u'charge', u'institutionalise', u'transmit', u'mail', u'offload', u'send off', u'communicate', u'displace', u'spool', u'get off', u'offset', u'import', u'post', u'institutionalize', u'commit'])
predicted (50): set([u'load', u'storing', u'retrieve', u'secure', u'stream', u'scanning', u'communication', u'mprotect', u'packet', u'aal5', u'hardware', u'control', u'computer', u'asynchronous', u'message', u'pxe', u'access', u'network', u'cache', u'storage', u'mechanism', u'terminal', u'usage', u'switching', u'function', u'accessing', u'information', u'buffer', u'connections', u'host', u'synchronization', u'device', u'transfers', u'netflow', u'configuration', u'data', u'monitor', u'sending', u'remote', u'cts', u'atm', u'packets', u'tdmoip', u'redundant', u'enabling', u'connection', u'requests', u'voice', u'typically', u'processor'])
intersection (1): set([u'load'])
WAIT
golden (17): set([u'hold on', u'hold out', u'hold off', u'look', u'hold back', u'anticipate', u'move', u'delay', u'look for', u'expect', u'act', u'hold the line', u'look forward', u'wait', u'hang on', u'await', u'look to'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (19): set([u"kick one's heels", u'hold out', u'hold off', u'ambuscade', u'lie in wait', u'hold back', u'move', u'lurk', u'ambush', u'bushwhack', u'delay', u'scupper', u'stand by', u'act', u'waylay', u"cool one's heels", u'stick around', u'stick about', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (19): set([u"kick one's heels", u'hold out', u'hold off', u'ambuscade', u'lie in wait', u'hold back', u'move', u'lurk', u'ambush', u'bushwhack', u'delay', u'scupper', u'stand by', u'act', u'waylay', u"cool one's heels", u'stick around', u'stick about', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (19): set([u"kick one's heels", u'hold out', u'hold off', u'ambuscade', u'lie in wait', u'hold back', u'move', u'lurk', u'ambush', u'bushwhack', u'delay', u'scupper', u'stand by', u'act', u'waylay', u"cool one's heels", u'stick around', u'stick about', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'heart', u'love', u'gone', u'searchin', u'kisses', u'we', u'yourself', u'tonight', u'alone', u'say', u'leavin', u'sleep', u'something', u'touch', u'titled', u'knows', u'baby', u'maybe', u'everything', u'waiting', u'crying', u'you', u'save', u'listen', u'waitin', u'eyes', u'teardrops', u'somebody', u'livin', u'lover', u'rain', u'stay', u'nothing', u'walk', u'come', u'bleed', u'me', u'forever', u'heaven', u'remember', u'someday', u'die', u'thing', u'cruel', u'goodbye', u'wish', u'kill', u'lovin', u'entitled', u'my'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'heart', u'love', u'gone', u'searchin', u'kisses', u'we', u'yourself', u'tonight', u'alone', u'say', u'leavin', u'sleep', u'something', u'touch', u'titled', u'knows', u'baby', u'maybe', u'everything', u'waiting', u'crying', u'you', u'save', u'listen', u'waitin', u'eyes', u'teardrops', u'somebody', u'livin', u'lover', u'rain', u'stay', u'nothing', u'walk', u'come', u'bleed', u'me', u'forever', u'heaven', u'remember', u'someday', u'die', u'thing', u'cruel', u'goodbye', u'wish', u'kill', u'lovin', u'entitled', u'my'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'depart', u'almost', u'anyway', u'three', u'not', u'evaporate', u'close', u'cancel', u'apply', u'happen', u'opted', u'confirm', u'make', u'resume', u'relegated', u'add', u'forgo', u'compensate', u'barely', u'recommence', u'announce', u'postpone', u'meant', u'begin', u'finish', u'get', u'impress', u'discontinue', u'vowing', u'hoped', u'extended', u'struggle', u'ask', u'six', u'vowed', u'applied', u'necessary', u'resign', u'prove', u'lasted', u'agree', u'leave', u'deferred', u'remain', u'settle', u'nothing', u'endure', u'withdraw', u'spend'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'heart', u'love', u'gone', u'searchin', u'kisses', u'we', u'yourself', u'tonight', u'alone', u'say', u'leavin', u'sleep', u'something', u'touch', u'titled', u'knows', u'baby', u'maybe', u'everything', u'waiting', u'crying', u'you', u'save', u'listen', u'waitin', u'eyes', u'teardrops', u'somebody', u'livin', u'lover', u'rain', u'stay', u'nothing', u'walk', u'come', u'bleed', u'me', u'forever', u'heaven', u'remember', u'someday', u'die', u'thing', u'cruel', u'goodbye', u'wish', u'kill', u'lovin', u'entitled', u'my'])
intersection (0): set([])
WAIT
golden (17): set([u'hold on', u'hold out', u'hold off', u'look', u'hold back', u'anticipate', u'move', u'delay', u'look for', u'expect', u'act', u'hold the line', u'look forward', u'wait', u'hang on', u'await', u'look to'])
predicted (50): set([u'suspend', u'depart', u'almost', u'anyway', u'three', u'not', u'evaporate', u'close', u'cancel', u'apply', u'happen', u'opted', u'confirm', u'make', u'resume', u'relegated', u'add', u'forgo', u'compensate', u'barely', u'recommence', u'announce', u'postpone', u'meant', u'begin', u'finish', u'get', u'impress', u'discontinue', u'vowing', u'hoped', u'extended', u'struggle', u'ask', u'six', u'vowed', u'applied', u'necessary', u'resign', u'prove', u'lasted', u'agree', u'leave', u'deferred', u'remain', u'settle', u'nothing', u'endure', u'withdraw', u'spend'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'heart', u'love', u'gone', u'searchin', u'kisses', u'we', u'yourself', u'tonight', u'alone', u'say', u'leavin', u'sleep', u'something', u'touch', u'titled', u'knows', u'baby', u'maybe', u'everything', u'waiting', u'crying', u'you', u'save', u'listen', u'waitin', u'eyes', u'teardrops', u'somebody', u'livin', u'lover', u'rain', u'stay', u'nothing', u'walk', u'come', u'bleed', u'me', u'forever', u'heaven', u'remember', u'someday', u'die', u'thing', u'cruel', u'goodbye', u'wish', u'kill', u'lovin', u'entitled', u'my'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (3): set([u'work', u'waitress', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (3): set([u'work', u'waitress', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'depart', u'almost', u'anyway', u'three', u'not', u'evaporate', u'close', u'cancel', u'apply', u'happen', u'opted', u'confirm', u'make', u'resume', u'relegated', u'add', u'forgo', u'compensate', u'barely', u'recommence', u'announce', u'postpone', u'meant', u'begin', u'finish', u'get', u'impress', u'discontinue', u'vowing', u'hoped', u'extended', u'struggle', u'ask', u'six', u'vowed', u'applied', u'necessary', u'resign', u'prove', u'lasted', u'agree', u'leave', u'deferred', u'remain', u'settle', u'nothing', u'endure', u'withdraw', u'spend'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (0): set([])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (23): set([u'bushwhack', u'expect', u'hold the line', u'scupper', u'look for', u'look to', u'ambuscade', u'look forward', u"kick one's heels", u'lie in wait', u'await', u'lurk', u'stick around', u'waylay', u"cool one's heels", u'stick about', u'wait', u'hold on', u'look', u'stand by', u'hang on', u'anticipate', u'ambush'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'suspend', u'travelcard', u'skip', u'move', u'accept', u'fail', u'pass', u'need', u'run', u'happen', u'check', u'select', u'queue', u'busy', u'checked', u'proceed', u'waits', u'travel', u'destination', u'start', u'waiting', u'call', u'take', u'hop', u'exit', u'save', u'choose', u'opt', u'begin', u'return', u'get', u'obviating', u'enter', u'stop', u'stay', u'ask', u'restart', u'missed', u'reset', u'passengers', u'search', u'calls', u'needing', u'leave', u'remain', u'time', u'stopping', u'arrive', u'queued', u'once'])
intersection (1): set([u'move'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WAIT
golden (7): set([u'move', u'hold off', u'hold back', u'hold out', u'delay', u'act', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (0): set([])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (1): set([u'look'])
WAIT
golden (11): set([u'hold on', u'look', u'hang on', u'anticipate', u'await', u'expect', u'hold the line', u'look to', u'look for', u'look forward', u'wait'])
predicted (50): set([u'promises', u'everyone', u'depart', u'help', u'watch', u'go', u'sleep', u'apologize', u'ready', u'begged', u'stop', u'find', u'apologizes', u'asks', u'waits', u'confess', u'comfort', u'waiting', u'asking', u'instructs', u'begs', u'them', u'pleads', u'return', u'invite', u'vows', u'punish', u'begging', u'forgive', u'vowing', u'stay', u'blame', u'let', u'decide', u'alone', u'implores', u'surrender', u'come', u'him', u'refuse', u'look', u'bring', u'intervene', u'ask', u'leave', u'departs', u'waited', u'kill', u'godith', u'talk'])
intersection (1): set([u'look'])
WAIT
golden (13): set([u'scupper', u'stand by', u'stick about', u'lurk', u"kick one's heels", u'bushwhack', u'ambush', u'waylay', u"cool one's heels", u'stick around', u'ambuscade', u'lie in wait', u'wait'])
predicted (49): set([u'mess', u'forget', u'ai', u'ca', u'fuck', u'tonight', u'sure', u'want', u'need', u'worry', u'really', u'try', u'what', u'let', u'anymore', u'how', u'damn', u'shit', u'you', u'tell', u'stand', u'do', u'we', u'buy', u'get', u'wo', u'stop', u'gonna', u'hear', u'know', u'ask', u'believe', u'why', u'care', u'me', u'myself', u'look', u'i', u'bother', u'cry', u'anybody', u'nothin', u'n', u'leave', u't', u'understand', u'wanna', u'think', u'mean'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'quick', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'pre', u'deciding', u'openers', u'england', u'scratch', u'shaky', u'grabs', u'winding', u'session', u'frantic', u'picked', u'memorable', u'wrap', u'saving', u'ripping', u'chase', u'crucial', u'tough', u'qualifying', u'pairing', u'wound', u'wrapped', u'kick', u'woke', u'scheduled', u'nervously', u'australia', u'sedately', u'matches', u'practice', u'wrapping', u'rain', u'break', u'dramatic', u'last', u'picking', u'amphetamine', u'runners', u'off', u'grueling', u'warmup', u'australians', u'taking', u'jumping', u'hosts', u'stand', u'penultimate', u'quick', u'gruelling', u'stages'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (49): set([u'seasonal', u'summer', u'drier', u'humid', u'colder', u'inland', u'mild', u'weather', u'warmer', u'temperate', u'subarctic', u'subtropical', u'cold', u'subhumid', u'frosts', u'summers', u'rainy', u'wetter', u'winter', u'damp', u'arid', u'moist', u'hot', u'fog', u'moisture', u'scrublands', u'semiarid', u'rainfall', u'rainless', u'monsoons', u'waters', u'shallow', u'sunny', u'experiences', u'frigid', u'snowfalls', u'winters', u'moister', u'cool', u'dry', u'rainfalls', u'climate', u'cooler', u'breezes', u'humidity', u'monsoonal', u'temperatures', u'monsoon', u'climates'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (2): set([u'ardent', u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (49): set([u'warmed', u'brine', u'humid', u'hard', u'rinsed', u'freeze', u'wash', u'stored', u'dried', u'kiln', u'heated', u'cold', u'crusts', u'preferably', u'soak', u'steaming', u'soaking', u'drying', u'washed', u'hot', u'moisture', u'wet', u'warmth', u'boil', u'rinsing', u'moisten', u'frost', u'misting', u'loose', u'stirred', u'evaporate', u'water', u'boiling', u'spray', u'dryer', u'cleaned', u'rain', u'cool', u'dry', u'chilled', u'breathable', u'clear', u'cloudy', u'humidity', u'filter', u'moistened', u'clean', u'evaporated', u'rinse'])
intersection (0): set([])
WARM
golden (1): set([u'warm'])
predicted (50): set([u'charm', u'genial', u'joyous', u'simple', u'sweet', u'heartfelt', u'quiet', u'cheerful', u'gentle', u'thoughtful', u'lively', u'sincere', u'genuine', u'nostalgic', u'witty', u'snappy', u'wonderful', u'wonderfully', u'gorgeous', u'smile', u'pleasing', u'joyful', u'dignified', u'wry', u'affectionate', u'serene', u'captivating', u'very', u'carefree', u'homely', u'pleasant', u'dreamy', u'wistful', u'disposition', u'loving', u'memorable', u'cheery', u'wholesome', u'cool', u'yearning', u'bright', u'warmth', u'sensitive', u'delightful', u'hearty', u'boyish', u'delightfully', u'passionate', u'sarcastic', u'looks'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (14): set([u'bearing', u'direction', u'north-south direction', u'itinerary', u'trend', u'route', u'east-west direction', u'aim', u'course', u'way', u'path', u'qibla', u'heading', u'tendency'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'seating', u'breathing space', u'standing room', u'room', u'sea room', u'position', u'lebensraum', u'seating room', u'parking', u'headroom', u'headway', u'living space', u'way', u'seats', u'seating area', u'elbow room', u'clearance', u'houseroom', u'breathing room', u'spatial relation'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (2): set([u'distance', u'way'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (14): set([u'stairway', u'lane', u'staircase', u'route', u'artefact', u'artifact', u'passage', u'access', u'watercourse', u'way', u'path', u'waterway', u'approach', u'road'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (1): set([u'approach'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'consolidate', u'managed', u'help', u'move', u'rode', u'back', u'drive', u'feinted', u'fortify', u'passage', u'seek', u'trip', u'secure', u'fend', u'hold', u'prepare', u'defend', u'get', u'backs', u'continent', u'safety', u'hill', u'homeland', u'northwards', u'marching', u'eastward', u'return', u'llerena', u'intending', u'route', u'pursuers', u'pushing', u'stop', u'break', u'extending', u'journey', u'putting', u'southwards', u'foot', u'trying', u'sending', u'trek', u'clear', u'up', u'keep', u'lift', u'push', u'initiative', u'went', u'heading'])
intersection (0): set([])
WAY
golden (3): set([u'status', u'condition', u'way'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (32): set([u'fashion', u'sunnah', u'course', u'manner', u'path', u'touch', u'primrose path', u'style', u'course of action', u'strait and narrow', u'hadith', u'idiom', u'way of life', u'straight and narrow', u'warpath', u'way', u'modus vivendi', u'form', u'signature', u'life style', u'sunna', u'wise', u'response', u'life-style', u'drape', u'lifestyle', u'fit', u'setup', u'mode', u'ambages', u'property', u'artistic style'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (3): set([u'journey', u'journeying', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (3): set([u'status', u'condition', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (19): set([u'voice', u'open sesame', u'means', u'implementation', u'fast track', u'tool', u'agency', u'way', u'effectuation', u'expedient', u'instrument', u'dint', u'desperate measure', u'escape', u'tooth', u'salvation', u'wings', u'road', u'stepping stone'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'seating', u'breathing space', u'standing room', u'room', u'sea room', u'position', u'lebensraum', u'seating room', u'parking', u'headroom', u'headway', u'living space', u'way', u'seats', u'seating area', u'elbow room', u'clearance', u'houseroom', u'breathing room', u'spatial relation'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (19): set([u'voice', u'open sesame', u'means', u'implementation', u'fast track', u'tool', u'agency', u'way', u'effectuation', u'expedient', u'instrument', u'dint', u'desperate measure', u'escape', u'tooth', u'salvation', u'wings', u'road', u'stepping stone'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (3): set([u'journey', u'journeying', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (19): set([u'voice', u'open sesame', u'means', u'implementation', u'fast track', u'tool', u'agency', u'way', u'effectuation', u'expedient', u'instrument', u'dint', u'desperate measure', u'escape', u'tooth', u'salvation', u'wings', u'road', u'stepping stone'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (22): set([u'fashion', u'manner', u'touch', u'style', u'fit', u'idiom', u'way', u'modus vivendi', u'status', u'form', u'life style', u'wise', u'response', u'condition', u'life-style', u'drape', u'lifestyle', u'setup', u'mode', u'signature', u'property', u'artistic style'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (14): set([u'stairway', u'lane', u'staircase', u'route', u'artefact', u'artifact', u'passage', u'access', u'watercourse', u'way', u'path', u'waterway', u'approach', u'road'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (14): set([u'bearing', u'direction', u'north-south direction', u'itinerary', u'trend', u'route', u'east-west direction', u'aim', u'course', u'way', u'path', u'qibla', u'heading', u'tendency'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (2): set([u'distance', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (3): set([u'status', u'condition', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (3): set([u'journey', u'journeying', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (24): set([u'bearing', u'trend', u'course', u'tendency', u'primrose path', u'course of action', u'hadith', u'sunnah', u'straight and narrow', u'warpath', u'way', u'qibla', u'direction', u'strait and narrow', u'east-west direction', u'sunna', u'path', u'way of life', u'north-south direction', u'route', u'aim', u'itinerary', u'ambages', u'heading'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (0): set([])
WAY
golden (3): set([u'status', u'condition', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (19): set([u'voice', u'open sesame', u'means', u'implementation', u'fast track', u'tool', u'agency', u'way', u'effectuation', u'expedient', u'instrument', u'dint', u'desperate measure', u'escape', u'tooth', u'salvation', u'wings', u'road', u'stepping stone'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (3): set([u'journey', u'journeying', u'way'])
predicted (50): set([u'consolidate', u'managed', u'help', u'move', u'rode', u'back', u'drive', u'feinted', u'fortify', u'passage', u'seek', u'trip', u'secure', u'fend', u'hold', u'prepare', u'defend', u'get', u'backs', u'continent', u'safety', u'hill', u'homeland', u'northwards', u'marching', u'eastward', u'return', u'llerena', u'intending', u'route', u'pursuers', u'pushing', u'stop', u'break', u'extending', u'journey', u'putting', u'southwards', u'foot', u'trying', u'sending', u'trek', u'clear', u'up', u'keep', u'lift', u'push', u'initiative', u'went', u'heading'])
intersection (1): set([u'journey'])
WAY
golden (13): set([u'course of action', u'strait and narrow', u'hadith', u'course', u'sunnah', u'straight and narrow', u'warpath', u'way', u'ambages', u'sunna', u'path', u'way of life', u'primrose path'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (32): set([u'fashion', u'course', u'manner', u'touch', u'primrose path', u'style', u'course of action', u'strait and narrow', u'hadith', u'straight and narrow', u'way of life', u'idiom', u'warpath', u'lifestyle', u'way', u'modus vivendi', u'form', u'ambages', u'life style', u'sunna', u'path', u'sunnah', u'life-style', u'drape', u'wise', u'fit', u'setup', u'mode', u'signature', u'response', u'property', u'artistic style'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (19): set([u'voice', u'open sesame', u'means', u'implementation', u'fast track', u'tool', u'agency', u'way', u'effectuation', u'expedient', u'instrument', u'dint', u'desperate measure', u'escape', u'tooth', u'salvation', u'wings', u'road', u'stepping stone'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'implementation', u'tool'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (4): set([u'pick', u'selection', u'way', u'choice'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (22): set([u'fashion', u'manner', u'touch', u'style', u'fit', u'idiom', u'way', u'modus vivendi', u'status', u'form', u'life style', u'wise', u'response', u'condition', u'life-style', u'drape', u'lifestyle', u'setup', u'mode', u'signature', u'property', u'artistic style'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (3): set([u'journey', u'journeying', u'way'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (50): set([u'fool', u'crazy', u'just', u'out', u'mind', u'anyway', u'past', u'see', u'something', u'mirror', u'hell', u'fear', u'singing', u'whoas', u'wonder', u'everybody', u'lie', u'now', u'thing', u'ways', u'things', u'make', u'when', u'breath', u'ossi', u'smile', u'cheerfully', u'hope', u'knelling', u'life', u'aleasha', u'watch', u'but', u'back', u'job', u'stick', u'fall', u'put', u'misfitland', u'aevroy', u'kids', u'whenever', u'cry', u'chance', u'mahua', u'turn', u'stuff', u'so', u'dream', u'ayouave'])
intersection (0): set([])
WAY
golden (20): set([u'life-style', u'style', u'fashion', u'wise', u'fit', u'form', u'setup', u'drape', u'idiom', u'life style', u'manner', u'way', u'signature', u'touch', u'lifestyle', u'property', u'artistic style', u'response', u'modus vivendi', u'mode'])
predicted (49): set([u'conceptualise', u'fashion', u'addresser', u'necessity', u'situationally', u'process', u'polyarchy', u'merely', u'dimension', u'general', u'concept', u'manner', u'sense', u'diversity', u'establishing', u'trivial', u'considering', u'what', u'goal', u'implementation', u'situations', u'question', u'strategy', u'factor', u'approach', u'function', u'inventive', u'fundamental', u'that', u'tool', u'regard', u'words', u'fuzzy', u'dichotomous', u'meaningful', u'kind', u'scenario', u'practically', u'might', u'challenge', u'solution', u'conceptualize', u'thing', u'fact', u'context', u'situation', u'order', u'procedure', u'result'])
intersection (2): set([u'fashion', u'manner'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (12): set([u'romp', u'get', u'win', u'prevail', u'acquire', u'sweep', u'take', u'take the cake', u'carry', u'cozen', u'triumph', u'gain'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (37): set([u'carry off', u'win', u'manage', u'sweep', u'pull off', u'nail', u'pan out', u'attain', u'pass', u'carry', u'run', u'go far', u'prevail', u'accomplish', u'bring home the bacon', u'get in', u'take', u'take the cake', u'nail down', u'hit the jackpot', u'achieve', u'hit', u'act', u'reach', u'succeed', u'deliver the goods', u'luck out', u'peg', u'romp', u'clear', u'work', u'negociate', u'make it', u'come through', u'arrive', u'bring off', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (2): set([u'manage', u'succeed'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'4a4', u'4a0', u'4a1', u'4a2', u'4a3', u'5a1', u'5a0', u'over', u'5a2', u'5a4', u'2a2', u'2a0', u'2a1', u'3a3', u'3a2', u'3a1', u'3a0', u'0a0', u'5a3', u'thrilling', u'1a0', u'scoreline', u'8a0', u'away', u'9a0', u'1', u'0', u'3', u'2', u'4', u'6a2', u'tie', u'decisive', u'6a1', u'penalties', u'7a1', u'7a0', u'draw', u'0a2', u'drew', u'6a3', u'aggregate', u'1a1', u'loss', u'6a4', u'thrashing', u'against', u'stunning', u'victory', u'defeat'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (12): set([u'romp', u'get', u'win', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'cozen', u'prevail', u'triumph', u'take'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'playoffs', u'4a2', u'give', u'divisional', u'winless', u'clinch', u'14a4', u'sweep', u'woaa', u'playoff', u'bngl', u'16a6', u'stanley', u'24a0', u'capture', u'clinching', u'broncos', u'lead', u'title', u'winning', u'won', u'7a6', u'team', u'play', u'championship', u'champion', u'tbjhl', u'tigers', u'lose', u'earn', u'hyannis', u'bulldogs', u'tie', u'losing', u'finals', u'rallied', u'advance', u'berth', u'lost', u'undefeated', u'clinched', u'second', u'lakers', u'17a16', u'victory', u'pennant', u'went', u'straight', u'geckos', u'first'])
intersection (1): set([u'sweep'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (37): set([u'carry off', u'win', u'manage', u'sweep', u'pull off', u'nail', u'pan out', u'attain', u'pass', u'carry', u'run', u'go far', u'prevail', u'accomplish', u'bring home the bacon', u'get in', u'take', u'take the cake', u'nail down', u'hit the jackpot', u'achieve', u'hit', u'act', u'reach', u'succeed', u'deliver the goods', u'luck out', u'peg', u'romp', u'clear', u'work', u'negociate', u'make it', u'come through', u'arrive', u'bring off', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (2): set([u'manage', u'succeed'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (37): set([u'carry off', u'win', u'manage', u'sweep', u'pull off', u'nail', u'pan out', u'attain', u'pass', u'carry', u'hit', u'go far', u'prevail', u'accomplish', u'bring home the bacon', u'get in', u'take the cake', u'take', u'deliver the goods', u'nail down', u'peg', u'achieve', u'run', u'act', u'reach', u'succeed', u'luck out', u'hit the jackpot', u'romp', u'clear', u'work', u'negociate', u'make it', u'come through', u'arrive', u'bring off', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (2): set([u'manage', u'succeed'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (37): set([u'carry off', u'win', u'manage', u'sweep', u'pull off', u'nail', u'pan out', u'attain', u'pass', u'carry', u'hit', u'go far', u'prevail', u'accomplish', u'bring home the bacon', u'get in', u'take the cake', u'take', u'deliver the goods', u'nail down', u'peg', u'achieve', u'run', u'act', u'reach', u'succeed', u'luck out', u'hit the jackpot', u'romp', u'clear', u'work', u'negociate', u'make it', u'come through', u'arrive', u'bring off', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (2): set([u'manage', u'succeed'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'playoffs', u'4a2', u'give', u'divisional', u'winless', u'clinch', u'14a4', u'sweep', u'woaa', u'playoff', u'bngl', u'16a6', u'stanley', u'24a0', u'capture', u'clinching', u'broncos', u'lead', u'title', u'winning', u'won', u'7a6', u'team', u'play', u'championship', u'champion', u'tbjhl', u'tigers', u'lose', u'earn', u'hyannis', u'bulldogs', u'tie', u'losing', u'finals', u'rallied', u'advance', u'berth', u'lost', u'undefeated', u'clinched', u'second', u'lakers', u'17a16', u'victory', u'pennant', u'went', u'straight', u'geckos', u'first'])
intersection (1): set([u'sweep'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (1): set([u'gain'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'4a4', u'4a0', u'4a1', u'4a2', u'4a3', u'5a1', u'5a0', u'over', u'5a2', u'5a4', u'2a2', u'2a0', u'2a1', u'3a3', u'3a2', u'3a1', u'3a0', u'0a0', u'5a3', u'thrilling', u'1a0', u'scoreline', u'8a0', u'away', u'9a0', u'1', u'0', u'3', u'2', u'4', u'6a2', u'tie', u'decisive', u'6a1', u'penalties', u'7a1', u'7a0', u'draw', u'0a2', u'drew', u'6a3', u'aggregate', u'1a1', u'loss', u'6a4', u'thrashing', u'against', u'stunning', u'victory', u'defeat'])
intersection (0): set([])
WIN
golden (37): set([u'carry off', u'win', u'manage', u'sweep', u'pull off', u'nail', u'pan out', u'attain', u'pass', u'carry', u'run', u'go far', u'prevail', u'accomplish', u'bring home the bacon', u'get in', u'take', u'take the cake', u'nail down', u'hit the jackpot', u'achieve', u'hit', u'act', u'reach', u'succeed', u'deliver the goods', u'luck out', u'peg', u'romp', u'clear', u'work', u'negociate', u'make it', u'come through', u'arrive', u'bring off', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (37): set([u'carry off', u'win', u'manage', u'sweep', u'pull off', u'nail', u'pan out', u'attain', u'pass', u'carry', u'hit', u'go far', u'prevail', u'accomplish', u'bring home the bacon', u'get in', u'take the cake', u'take', u'deliver the goods', u'nail down', u'peg', u'achieve', u'run', u'act', u'reach', u'succeed', u'luck out', u'hit the jackpot', u'romp', u'clear', u'work', u'negociate', u'make it', u'come through', u'arrive', u'bring off', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (2): set([u'manage', u'succeed'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (12): set([u'romp', u'get', u'win', u'triumph', u'acquire', u'sweep', u'gain', u'take the cake', u'carry', u'prevail', u'cozen', u'take'])
predicted (50): set([u'playoffs', u'4a2', u'give', u'divisional', u'winless', u'clinch', u'14a4', u'sweep', u'woaa', u'playoff', u'bngl', u'16a6', u'stanley', u'24a0', u'capture', u'clinching', u'broncos', u'lead', u'title', u'winning', u'won', u'7a6', u'team', u'play', u'championship', u'champion', u'tbjhl', u'tigers', u'lose', u'earn', u'hyannis', u'bulldogs', u'tie', u'losing', u'finals', u'rallied', u'advance', u'berth', u'lost', u'undefeated', u'clinched', u'second', u'lakers', u'17a16', u'victory', u'pennant', u'went', u'straight', u'geckos', u'first'])
intersection (1): set([u'sweep'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'tc2000', u'gp', u'tournament', u'crown', u'lightheavyweight', u'challenger', u'openweight', u'slam', u'lightweight', u'sprint', u'event', u'capture', u'competitor', u'title', u'defend', u'winner', u'finalist', u'winning', u'won', u'wgp', u'grand', u'superheavyweight', u'beating', u'wimbledon', u'championship', u'champion', u'singles', u'stuczynski', u'nabf', u'outright', u'qualify', u'championships', u'ghostzapper', u'champions', u'world', u'eliminator', u'junior', u'capturing', u'middleweight', u'earn', u'tournaments', u'unify', u'undefeated', u'clinched', u'podium', u'defeating', u'titles', u'compete', u'nationals', u'opbf'])
intersection (0): set([])
WIN
golden (37): set([u'carry off', u'win', u'manage', u'sweep', u'pull off', u'nail', u'pan out', u'attain', u'pass', u'carry', u'hit', u'go far', u'prevail', u'accomplish', u'bring home the bacon', u'get in', u'take the cake', u'take', u'deliver the goods', u'nail down', u'peg', u'achieve', u'run', u'act', u'reach', u'succeed', u'luck out', u'hit the jackpot', u'romp', u'clear', u'work', u'negociate', u'make it', u'come through', u'arrive', u'bring off', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (49): set([u'liberal', u'asquithian', u'seat', u'renomination', u'sought', u'seek', u'chose', u'presidency', u'contest', u'recontest', u'pledged', u'unseating', u'winning', u'tantamount', u'liberals', u'won', u'incumbent', u'endorse', u'unseat', u'speakership', u'stand', u'reelection', u'uncontested', u'majority', u'bid', u'swing', u'overwhelmingly', u'preferred', u'preselection', u'leadership', u'endorsement', u'gain', u'conservatives', u'losing', u'dlp', u'candidacy', u'preferences', u'oust', u'tories', u'failed', u'lost', u'recall', u'challenge', u'oppose', u'victory', u'defeat', u'ndp', u'landslide', u'election'])
intersection (0): set([])
WIN
golden (5): set([u'win', u'acquire', u'cozen', u'gain', u'get'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (1): set([u'get'])
WIN
golden (8): set([u'romp', u'win', u'sweep', u'take', u'take the cake', u'carry', u'prevail', u'triumph'])
predicted (50): set([u'correct', u'trust', u'elect', u'give', u'cheat', u'forfeit', u'manage', u'see', u'need', u'handle', u'winning', u'stumble', u'theoretically', u'if', u'guess', u'wager', u'pay', u'make', u'fight', u'hire', u'contestant', u'guarantee', u'intend', u'outrun', u'gamble', u'jackpot', u'survive', u'finish', u'earns', u'do', u'get', u'afford', u'deliver', u'refuse', u'deserve', u'succeed', u'spoil', u'disappoint', u'accumulate', u'earn', u'gets', u'prize', u'wins', u'challenge', u'loses', u'collect', u'lose', u'bidder', u'declare', u'bet'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (6): set([u'foreground', u'video display', u'window', u'dialog box', u'display', u'panel'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (6): set([u'foreground', u'video display', u'window', u'dialog box', u'display', u'panel'])
predicted (50): set([u'kernel', u'code', u'frontend', u'debugger', u'btrieve', u'header', u'api', u'program', u'file', u'configurable', u'readline', u'backend', u'executable', u'container', u'script', u'gtk', u'ejb', u'desktop', u'environment', u'application', u'clipboard', u'folder', u'iptables', u'widget', u'shell', u'xaml', u'filesystem', u'component', u'icewm', u'host', u'xmlhttprequest', u'wpf', u'configuration', u'outliner', u'stack', u'cardspace', u'installation', u'package', u'default', u'gui', u'plugin', u'dll', u'server', u'autocomplete', u'applet', u'fluxbox', u'directory', u'runtime', u'windowing', u'versioning'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (2): set([u'clerestory', u'dormer'])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (37): set([u'sash window', u'clerestory', u'window glass', u'jalousie', u'show window', u'display window', u'transom', u'pane', u'porthole', u'oeil de boeuf', u'storm window', u'pane of glass', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'picture window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'windowpane', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (3): set([u'window', u'ticket window', u'opening'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (3): set([u'car window', u'window', u'opening'])
predicted (50): set([u'kernel', u'code', u'frontend', u'debugger', u'btrieve', u'header', u'api', u'program', u'file', u'configurable', u'readline', u'backend', u'executable', u'container', u'script', u'gtk', u'ejb', u'desktop', u'environment', u'application', u'clipboard', u'folder', u'iptables', u'widget', u'shell', u'xaml', u'filesystem', u'component', u'icewm', u'host', u'xmlhttprequest', u'wpf', u'configuration', u'outliner', u'stack', u'cardspace', u'installation', u'package', u'default', u'gui', u'plugin', u'dll', u'server', u'autocomplete', u'applet', u'fluxbox', u'directory', u'runtime', u'windowing', u'versioning'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (37): set([u'sash window', u'clerestory', u'window glass', u'jalousie', u'show window', u'display window', u'transom', u'pane', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'lancet window', u'casement window', u'pane of glass', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'shopwindow', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'windowpane', u'fanlight', u'double-hung window', u'transom window', u'storm sash', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (2): set([u'clerestory', u'dormer'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (2): set([u'clerestory', u'dormer'])
WINDOW
golden (35): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'car window', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'lancet window', u'casement window', u'clearstory', u'opening', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'shopwindow', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'transom window', u'storm sash', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (3): set([u'window', u'ticket window', u'opening'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (6): set([u'foreground', u'video display', u'window', u'dialog box', u'display', u'panel'])
predicted (50): set([u'kernel', u'code', u'frontend', u'debugger', u'btrieve', u'header', u'api', u'program', u'file', u'configurable', u'readline', u'backend', u'executable', u'container', u'script', u'gtk', u'ejb', u'desktop', u'environment', u'application', u'clipboard', u'folder', u'iptables', u'widget', u'shell', u'xaml', u'filesystem', u'component', u'icewm', u'host', u'xmlhttprequest', u'wpf', u'configuration', u'outliner', u'stack', u'cardspace', u'installation', u'package', u'default', u'gui', u'plugin', u'dll', u'server', u'autocomplete', u'applet', u'fluxbox', u'directory', u'runtime', u'windowing', u'versioning'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (3): set([u'car window', u'window', u'opening'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (0): set([])
WINDOW
golden (37): set([u'sash window', u'clerestory', u'window glass', u'jalousie', u'show window', u'display window', u'transom', u'pane', u'porthole', u'oeil de boeuf', u'storm window', u'pane of glass', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'picture window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'windowpane', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (2): set([u'clerestory', u'dormer'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (7): set([u'pane of glass', u'window glass', u'opening', u'windowpane', u'window', u'pane', u'car window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (0): set([])
WINDOW
golden (3): set([u'car window', u'window', u'opening'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (37): set([u'sash window', u'clerestory', u'window glass', u'jalousie', u'show window', u'display window', u'transom', u'pane', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'lancet window', u'casement window', u'pane of glass', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'shopwindow', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'windowpane', u'fanlight', u'double-hung window', u'transom window', u'storm sash', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (7): set([u'pane of glass', u'window glass', u'opening', u'windowpane', u'window', u'pane', u'car window'])
predicted (50): set([u'kernel', u'code', u'frontend', u'debugger', u'btrieve', u'header', u'api', u'program', u'file', u'configurable', u'readline', u'backend', u'executable', u'container', u'script', u'gtk', u'ejb', u'desktop', u'environment', u'application', u'clipboard', u'folder', u'iptables', u'widget', u'shell', u'xaml', u'filesystem', u'component', u'icewm', u'host', u'xmlhttprequest', u'wpf', u'configuration', u'outliner', u'stack', u'cardspace', u'installation', u'package', u'default', u'gui', u'plugin', u'dll', u'server', u'autocomplete', u'applet', u'fluxbox', u'directory', u'runtime', u'windowing', u'versioning'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (3): set([u'car window', u'window', u'opening'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (7): set([u'pane of glass', u'window glass', u'opening', u'windowpane', u'window', u'pane', u'car window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (3): set([u'car window', u'window', u'opening'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (3): set([u'car window', u'window', u'opening'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (4): set([u'time period', u'window', u'period', u'period of time'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (2): set([u'clerestory', u'dormer'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (3): set([u'car window', u'window', u'opening'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (4): set([u'time period', u'window', u'period', u'period of time'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (4): set([u'time period', u'window', u'period', u'period of time'])
predicted (50): set([u'kernel', u'code', u'frontend', u'debugger', u'btrieve', u'header', u'api', u'program', u'file', u'configurable', u'readline', u'backend', u'executable', u'container', u'script', u'gtk', u'ejb', u'desktop', u'environment', u'application', u'clipboard', u'folder', u'iptables', u'widget', u'shell', u'xaml', u'filesystem', u'component', u'icewm', u'host', u'xmlhttprequest', u'wpf', u'configuration', u'outliner', u'stack', u'cardspace', u'installation', u'package', u'default', u'gui', u'plugin', u'dll', u'server', u'autocomplete', u'applet', u'fluxbox', u'directory', u'runtime', u'windowing', u'versioning'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (2): set([u'clerestory', u'dormer'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (5): set([u'pane of glass', u'window glass', u'window', u'windowpane', u'pane'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (0): set([])
WINDOW
golden (3): set([u'window', u'ticket window', u'opening'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (6): set([u'foreground', u'video display', u'window', u'dialog box', u'display', u'panel'])
predicted (50): set([u'kernel', u'code', u'frontend', u'debugger', u'btrieve', u'header', u'api', u'program', u'file', u'configurable', u'readline', u'backend', u'executable', u'container', u'script', u'gtk', u'ejb', u'desktop', u'environment', u'application', u'clipboard', u'folder', u'iptables', u'widget', u'shell', u'xaml', u'filesystem', u'component', u'icewm', u'host', u'xmlhttprequest', u'wpf', u'configuration', u'outliner', u'stack', u'cardspace', u'installation', u'package', u'default', u'gui', u'plugin', u'dll', u'server', u'autocomplete', u'applet', u'fluxbox', u'directory', u'runtime', u'windowing', u'versioning'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (1): set([u'transom'])
WINDOW
golden (4): set([u'time period', u'window', u'period', u'period of time'])
predicted (50): set([u'glazed', u'mirrors', u'flush', u'fixture', u'openable', u'recessed', u'seatbacks', u'transom', u'backrests', u'windshield', u'console', u'floor', u'seats', u'housing', u'bench', u'lights', u'bracket', u'footrest', u'doors', u'sliding', u'trunk', u'flat', u'ceiling', u'valances', u'door', u'bed', u'radiator', u'envelope', u'sunshades', u'canted', u'front', u'lockable', u'windscreen', u'louvers', u'slatted', u'armrest', u'windows', u'smokebox', u'bucket', u'hinges', u'roof', u'grilles', u'armrests', u'dashboard', u'plexiglass', u'bumper', u'slanted', u'canopy', u'tray', u'hinged'])
intersection (0): set([])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'decorative', u'gable', u'nave', u'narthex', u'wall', u'octagonal', u'portal', u'clerestory', u'vaulted', u'chancel', u'facade', u'cornice', u'stained', u'pulpit', u'chimney', u'gabled', u'dormer', u'ceiling', u'frieze', u'belfry', u'staircase', u'porch', u'altar', u'dome', u'tracery', u'balustraded', u'reredos', u'rotunda', u'decorated', u'fireplace', u'mosaic', u'balustrade', u'aisle', u'panelled', u'parapet', u'glass', u'windows', u'portico', u'pediment', u'roof', u'lancet', u'doorway', u'pedimented', u'coffered', u'vault', u'domed', u'transept', u'marble', u'colonnade', u'apse'])
intersection (2): set([u'clerestory', u'dormer'])
WINDOW
golden (33): set([u'sash window', u'clerestory', u'jalousie', u'show window', u'display window', u'transom', u'porthole', u'oeil de boeuf', u'storm window', u'picture window', u'rosette', u'window', u'skylight', u'transom window', u'casement window', u'clearstory', u'sliding window', u'double glazing', u'framework', u'bow window', u'louvered window', u'storm sash', u'dormer window', u'pivoting window', u'shop window', u'rose window', u'dormer', u'fanlight', u'double-hung window', u'lancet window', u'shopwindow', u'bay window', u'stained-glass window'])
predicted (50): set([u'toilet', u'walking', u'pushes', u'crashing', u'bedroom', u'knocking', u'pulling', u'driveway', u'walks', u'sneaking', u'pulls', u'rushing', u'balcony', u'bathroom', u'closet', u'floor', u'screaming', u'elevator', u'camera', u'drags', u'cliff', u'crawls', u'slips', u'hallway', u'ceiling', u'door', u'climbs', u'jumps', u'pushing', u'kirenenko', u'glass', u'bursts', u'trunk', u'knocks', u'stares', u'stairs', u'kitchen', u'runs', u'compartment', u'room', u'roof', u'smashes', u'shower', u'doorway', u'slams', u'steps', u'coffin', u'drops', u'throws', u'limo'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (15): set([u'counterpoint', u'compose', u'instrumentate', u'score', u'melodise', u'create', u'write', u'instrument', u'harmonise', u'melodize', u'harmonize', u'set', u'make', u'set to music', u'arrange'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (1): set([u'make'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (23): set([u'capitalize', u'hyphen', u'describe', u'spell out', u'scrawl', u'calligraph', u'cross', u'write', u'stenograph', u'print', u'draw', u'trace', u'spell', u'impress', u'letter', u'superscribe', u'line', u'copy', u'scribble', u'hyphenate', u'delineate', u'capitalise', u'dot'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (15): set([u'counterpoint', u'compose', u'instrumentate', u'score', u'melodise', u'create', u'write', u'instrument', u'harmonise', u'melodize', u'harmonize', u'set', u'make', u'set to music', u'arrange'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (1): set([u'make'])
WRITE
golden (3): set([u'write', u'correspond', u'drop a line'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (3): set([u'write', u'correspond', u'drop a line'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (19): set([u'delineate', u'draw', u'stenograph', u'trace', u'capitalise', u'scribble', u'describe', u'impress', u'cross', u'write', u'print', u'scrawl', u'letter', u'calligraph', u'superscribe', u'line', u'copy', u'capitalize', u'dot'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'load', u'instantiate', u'addresses', u'stdout', u'parse', u'code', u'file', u'checksums', u'implement', u'check', u'overwrite', u'queue', u'encrypt', u'specific', u'indexes', u'decode', u'stylesheet', u'lookup', u'append', u'encode', u'timestamps', u'function', u'optionally', u'configure', u'invoke', u'read', u'cmdlets', u'queries', u'modify', u'lookups', u'xchg', u'address', u'initialize', u'interactively', u'hashes', u'generate', u'specify', u'restrict', u'execute', u'subroutine', u'esmtp', u'pointers', u'register', u'compile', u'flags', u'mapped', u'embed', u'assign', u'automatically', u'delete'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'load', u'instantiate', u'addresses', u'stdout', u'parse', u'code', u'file', u'checksums', u'implement', u'check', u'overwrite', u'queue', u'encrypt', u'specific', u'indexes', u'decode', u'stylesheet', u'lookup', u'append', u'encode', u'timestamps', u'function', u'optionally', u'configure', u'invoke', u'read', u'cmdlets', u'queries', u'modify', u'lookups', u'xchg', u'address', u'initialize', u'interactively', u'hashes', u'generate', u'specify', u'restrict', u'execute', u'subroutine', u'esmtp', u'pointers', u'register', u'compile', u'flags', u'mapped', u'embed', u'assign', u'automatically', u'delete'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (59): set([u'intercommunicate', u'apostrophise', u'reference', u'rewrite', u'footnote', u'poetise', u'sign', u'annotate', u'subscribe', u'scrabble', u'type', u'write of', u'write in', u'create verbally', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'poetize', u'author', u'get down', u'dramatize', u'verse', u'write', u'pen', u'write out', u'indite', u'draft', u'set down', u'cite', u'profile', u'draw', u'jot', u'write about', u'communicate', u'dramatise', u'compose', u'scribble', u'put down', u'write off', u'write on', u'outline', u'fling off', u'script', u'make out', u'adopt', u'handwrite', u'scratch off', u'paragraph', u'write down', u'toss off', u'dash off', u'lyric', u'knock off', u'versify', u'issue', u'write copy', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (59): set([u'intercommunicate', u'apostrophise', u'reference', u'rewrite', u'footnote', u'poetise', u'sign', u'annotate', u'subscribe', u'scrabble', u'type', u'write of', u'write in', u'create verbally', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'poetize', u'author', u'get down', u'dramatize', u'verse', u'write', u'pen', u'write out', u'indite', u'draft', u'set down', u'cite', u'profile', u'draw', u'jot', u'write about', u'communicate', u'dramatise', u'compose', u'scribble', u'put down', u'write off', u'write on', u'outline', u'fling off', u'script', u'make out', u'adopt', u'handwrite', u'scratch off', u'paragraph', u'write down', u'toss off', u'dash off', u'lyric', u'knock off', u'versify', u'issue', u'write copy', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (15): set([u'counterpoint', u'compose', u'instrumentate', u'score', u'melodise', u'create', u'write', u'instrument', u'harmonise', u'melodize', u'harmonize', u'set', u'make', u'set to music', u'arrange'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (1): set([u'make'])
WRITE
golden (59): set([u'intercommunicate', u'apostrophise', u'reference', u'rewrite', u'footnote', u'poetise', u'sign', u'annotate', u'subscribe', u'scrabble', u'type', u'write of', u'write in', u'create verbally', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'poetize', u'author', u'get down', u'dramatize', u'verse', u'write', u'pen', u'write out', u'indite', u'draft', u'set down', u'cite', u'profile', u'draw', u'jot', u'write about', u'communicate', u'dramatise', u'compose', u'scribble', u'put down', u'write off', u'write on', u'outline', u'fling off', u'script', u'make out', u'adopt', u'handwrite', u'scratch off', u'paragraph', u'write down', u'toss off', u'dash off', u'lyric', u'knock off', u'versify', u'issue', u'write copy', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (19): set([u'delineate', u'draw', u'stenograph', u'trace', u'capitalise', u'scribble', u'describe', u'impress', u'cross', u'write', u'print', u'scrawl', u'letter', u'calligraph', u'superscribe', u'line', u'copy', u'capitalize', u'dot'])
predicted (50): set([u'portuguese', u'transcribe', u'albanian', u'phonetically', u'orthography', u'colloquial', u'spanish', u'pronounce', u'bulgarian', u'indic', u'yiddish', u'hebrew', u'arabic', u'esperanto', u'norfuk', u'speakers', u'transliteration', u'cyrillic', u'alphabet', u'orthographies', u'luganda', u'pronunciation', u'phonetics', u'mandarin', u'translate', u'slavic', u'latin', u'tagalog', u'warlpiri', u'english', u'pidgin', u'hmong', u'vernaculars', u'inuktitut', u'scripts', u'alphabets', u'fluently', u'monolingual', u'language', u'syllabary', u'transliterate', u'transliterating', u'script', u'xitsonga', u'phonology', u'vernacular', u'setswana', u'learn', u'calqued', u'ndyuka'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (3): set([u'write', u'correspond', u'drop a line'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (3): set([u'write', u'correspond', u'drop a line'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (3): set([u'write', u'correspond', u'drop a line'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (43): set([u'intercommunicate', u'apostrophise', u'rewrite', u'describe', u'sign', u'subscribe', u'scrawl', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'calligraph', u'cross', u'write', u'write out', u'stenograph', u'print', u'set down', u'draw', u'jot', u'trace', u'communicate', u'impress', u'letter', u'superscribe', u'line', u'copy', u'capitalize', u'put down', u'delineate', u'scribble', u'capitalise', u'issue', u'make out', u'handwrite', u'write down', u'apostrophize', u'dot'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (5): set([u'write', u'hyphen', u'spell', u'hyphenate', u'spell out'])
predicted (50): set([u'load', u'instantiate', u'addresses', u'stdout', u'parse', u'code', u'file', u'checksums', u'implement', u'check', u'overwrite', u'queue', u'encrypt', u'specific', u'indexes', u'decode', u'stylesheet', u'lookup', u'append', u'encode', u'timestamps', u'function', u'optionally', u'configure', u'invoke', u'read', u'cmdlets', u'queries', u'modify', u'lookups', u'xchg', u'address', u'initialize', u'interactively', u'hashes', u'generate', u'specify', u'restrict', u'execute', u'subroutine', u'esmtp', u'pointers', u'register', u'compile', u'flags', u'mapped', u'embed', u'assign', u'automatically', u'delete'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (3): set([u'write', u'create by mental act', u'create mentally'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (59): set([u'intercommunicate', u'apostrophise', u'reference', u'rewrite', u'footnote', u'poetise', u'sign', u'annotate', u'subscribe', u'scrabble', u'type', u'write of', u'write in', u'create verbally', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'poetize', u'author', u'get down', u'dramatize', u'verse', u'write', u'pen', u'write out', u'indite', u'draft', u'set down', u'cite', u'profile', u'draw', u'jot', u'write about', u'communicate', u'dramatise', u'compose', u'scribble', u'put down', u'write off', u'write on', u'outline', u'fling off', u'script', u'make out', u'adopt', u'handwrite', u'scratch off', u'paragraph', u'write down', u'toss off', u'dash off', u'lyric', u'knock off', u'versify', u'issue', u'write copy', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (43): set([u'intercommunicate', u'apostrophise', u'rewrite', u'describe', u'sign', u'subscribe', u'scrawl', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'calligraph', u'cross', u'write', u'write out', u'stenograph', u'print', u'set down', u'draw', u'jot', u'trace', u'communicate', u'impress', u'letter', u'superscribe', u'line', u'copy', u'capitalize', u'put down', u'delineate', u'scribble', u'capitalise', u'issue', u'make out', u'handwrite', u'write down', u'apostrophize', u'dot'])
predicted (50): set([u'load', u'instantiate', u'addresses', u'stdout', u'parse', u'code', u'file', u'checksums', u'implement', u'check', u'overwrite', u'queue', u'encrypt', u'specific', u'indexes', u'decode', u'stylesheet', u'lookup', u'append', u'encode', u'timestamps', u'function', u'optionally', u'configure', u'invoke', u'read', u'cmdlets', u'queries', u'modify', u'lookups', u'xchg', u'address', u'initialize', u'interactively', u'hashes', u'generate', u'specify', u'restrict', u'execute', u'subroutine', u'esmtp', u'pointers', u'register', u'compile', u'flags', u'mapped', u'embed', u'assign', u'automatically', u'delete'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (2): set([u'compose', u'rewrite'])
WRITE
golden (3): set([u'write', u'correspond', u'drop a line'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (15): set([u'counterpoint', u'compose', u'instrumentate', u'score', u'melodise', u'create', u'write', u'instrument', u'harmonise', u'melodize', u'harmonize', u'set', u'make', u'set to music', u'arrange'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (1): set([u'make'])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (1): set([u'rewrite'])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (37): set([u'dash off', u'author', u'reference', u'rewrite', u'footnote', u'poetise', u'annotate', u'lyric', u'write of', u'create verbally', u'write up', u'compose', u'poetize', u'script', u'dramatize', u'pen', u'write', u'verse', u'draft', u'indite', u'write out', u'fling off', u'cite', u'profile', u'draw', u'write about', u'dramatise', u'write off', u'write on', u'outline', u'adopt', u'scratch off', u'paragraph', u'toss off', u'knock off', u'versify', u'write copy'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (3): set([u'write', u'correspond', u'drop a line'])
predicted (49): set([u'exhibit', u'improvise', u'dedicated', u'rewrite', u'agreed', u'contribute', u'popularise', u'introductions', u'refine', u'preface', u'cultivate', u'establish', u'publicise', u'illustrate', u'sell', u'compose', u'popularize', u'create', u'devote', u'contributed', u'publish', u'writing', u'contributing', u'paint', u'adapt', u'burrowayas', u'devoted', u'collaborate', u'accompany', u'deliver', u'prefaces', u'describe', u'introduce', u'produce', u'choreograph', u'arrange', u'adapting', u'hire', u'edit', u'continues', u'dedicate', u'asked', u'compile', u'continue', u'submitting', u'rework', u'penning', u'began', u'revise'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
WRITE
golden (26): set([u'intercommunicate', u'apostrophise', u'rewrite', u'sign', u'subscribe', u'scrabble', u'type', u'write in', u'write up', u'jot down', u'style', u'cut', u'typewrite', u'get down', u'write', u'write out', u'issue', u'jot', u'communicate', u'scribble', u'put down', u'set down', u'make out', u'handwrite', u'write down', u'apostrophize'])
predicted (50): set([u'owe', u'prefer', u'feel', u'ask', u'say', u'expect', u'sing', u'need', u'happen', u'find', u'wonder', u'iam', u'guess', u'how', u'make', u'please', u'everything', u'didnat', u'recommend', u'suppose', u'speak', u'really', u'ought', u'listen', u'somebody', u'read', u'knew', u'donat', u'wish', u'ayou', u'itas', u'understand', u'imagine', u'telling', u'ahow', u'wanted', u'recall', u'me', u'remember', u'awhat', u'i', u'maybe', u'appreciate', u'anybody', u'try', u'stupid', u'honestly', u'always', u'aif', u'think'])
intersection (0): set([])
In [14]:
%%javascript
IPython.OutputArea.auto_scroll_threshold = 9999999;
Content source: tudarmstadt-lt/contextualization-eval
Similar notebooks: