1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
"""
Find connections between two words
"""
import sys
import time
import click
import random
import simplejson as json
from tqdm import tqdm
from app.thesaurus.api import Thesaurus
@click.command()
@click.option('-a', '--a', 'opt_word_a', required=True,
help='Starting word')
@click.option('-b', '--b', 'opt_word_b', required=True,
help='Ending word')
@click.option('-oe', '--include_oe', 'opt_include_oe', is_flag=True,
help='Whether to include OE/archaic words')
@click.option('-sl', '--include_slang', 'opt_include_slang', is_flag=True,
help='Whether to include slang/colloquial words')
@click.option('-w', '--words_per_step', 'opt_words_per_step', default=20,
help='Number of words to check per step')
@click.option('-c', '--categories_per_word', 'opt_categories_per_word', default=3,
help='Number of categories to check per word')
@click.pass_context
def cli(ctx, opt_word_a, opt_word_b, opt_include_oe, opt_include_slang, opt_words_per_step, opt_categories_per_word):
"""
Find connections between two words
"""
thesaurus = Thesaurus()
solver = TreeSolver(thesaurus, opt_word_a, opt_word_b, opt_include_oe, opt_include_slang, opt_words_per_step, opt_categories_per_word)
print(f"Starting word: {opt_word_a}")
print(f"Ending word: {opt_word_b}")
queue_a = [opt_word_a]
queue_b = [opt_word_b]
while True:
queue_a = solver.build_tree(words=queue_a, tree=solver.tree_a, target=solver.tree_b)
if solver.should_reset:
queue_a = [ opt_word_a ]
queue_b = [ opt_word_b ]
solver.reset()
queue_b = solver.build_tree(words=queue_b, tree=solver.tree_b, target=solver.tree_a)
if solver.should_reset:
queue_a = [ opt_word_a ]
queue_b = [ opt_word_b ]
solver.reset()
print(f"[depth] {solver.max_dist} [queue a] {len(queue_a)} [queue b] {len(queue_b)} [skips] {len(solver.skips)}")
# print(solver.skips)
class TreeSolver:
def __init__(self, thesaurus, word_a, word_b, include_oe, include_slang, words_per_step, categories_per_word):
self.thesaurus = thesaurus
self.word_a = word_a
self.word_b = word_b
self.include_oe = include_oe
self.include_slang = include_slang
self.words_per_step = words_per_step
self.categories_per_word = categories_per_word
self.skips = []
self.max_dist = 0
self.reset()
def reset(self):
self.tree_a = { self.word_a: 0 }
self.tree_b = { self.word_b: 0 }
self.should_reset = False
def build_tree(self, words=[], tree={}, target={}, depth=999):
next_queue = []
if len(words) > self.words_per_step:
next_queue += words[self.words_per_step:]
words = words[:self.words_per_step]
for word in tqdm(words):
categories = self.thesaurus.search(word)['categories']
count = 0
for category in categories:
if count > self.categories_per_word:
break
catid = category['catid']
if (word, str(catid),) in self.skips:
# print(f"Skip {word} {catid}")
continue
if catid in tree:
continue
tree[catid] = tree[word] + 1
add_to_queue = self.process_category(catid, tree, target)
if self.should_reset:
return []
if len(add_to_queue):
next_queue += add_to_queue
count += 1
return next_queue
def process_category(self, catid, tree, target):
queue = []
category_result = self.thesaurus.category(catid)
for category_word in category_result['words']:
word = self.fix_word(category_word['word'])
years = category_word['years'].lower()
if (catid, word,) in self.skips:
continue
word = self.process_word(word, years, catid, tree, target)
if word:
queue.append(word)
if self.should_reset:
return
return queue
def process_word(self, word, years, catid, tree, target):
if not self.include_oe and self.is_oe(years):
return None
if not self.include_slang and self.is_slang(years):
return None
if word not in tree:
tree[word] = tree[catid] + 1
self.max_dist = max(self.max_dist, tree[word])
if word in target:
self.make_chain(hinge=word, can_remove=True)
return word
if word in target:
self.make_chain(hinge=word, can_remove=True)
return None
def make_chain(self, hinge, can_remove=True):
# tqdm.write(f"Making chain from {hinge}")
chain_a = self.descend_chain(hinge, self.tree_a)
chain_b = self.descend_chain(hinge, self.tree_b)
chain = list(reversed(chain_a)) + [hinge] + chain_b
self.display_chain(chain)
if can_remove:
tqdm.write("Enter a number to break the chain, enter to keep searching, or Ctrl-C to exit")
tqdm.write("")
index = input("> ").strip()
if index and self.is_integer(index):
item = chain[int(index)]
if item in chain_a:
self.add_skip(item, chain_a)
self.should_reset = True
if item in chain_b:
self.add_skip(item, chain_b)
self.should_reset = True
return True
return False
def add_skip(self, item, chain):
index = chain.index(item)
if index == len(chain) - 1:
return
prev_item = chain[index + 1]
self.skips.append((prev_item, item))
if self.is_integer(item):
tqdm.write(f"Removing: {prev_item} => {self.get_category_name(item)}")
else:
tqdm.write(f"Removing: {self.get_category_name(prev_item)} => {item}")
def descend_chain(self, word, tree):
start_word = word
chain = []
while word is not None:
match = None
if self.is_integer(word):
category_result = self.thesaurus.category(word)
for category_word in category_result['words']:
cat_word = self.fix_word(category_word['word'])
if cat_word != word and cat_word in tree and tree[cat_word] < tree[word]:
chain.append(cat_word)
match = cat_word
break
else:
categories = self.thesaurus.search(word)['categories']
for category in categories:
catid = category['catid']
if catid != word and catid in tree and tree[catid] < tree[word]:
chain.append(catid)
match = catid
break
if match is not None:
word = match
if tree[word] == 0:
break
else:
if self.is_integer(word):
tqdm.write(f"No match for: {self.get_category_name(word)}")
tqdm.write(f"Chain started with {start_word}")
self.display_chain(chain)
else:
tqdm.write(f"No match for: {word}")
tqdm.write(f"Chain started with {start_word}")
self.display_chain(chain)
return []
return chain
def display_chain(self, chain):
tqdm.write("")
for i, word in enumerate(chain):
if self.is_integer(word):
word = self.get_category_name(word)
tqdm.write(f"{i} -> {word}")
else:
tqdm.write(f"{i} => {word}")
tqdm.write("")
def get_category_name(self, catid):
category = self.thesaurus.category(catid)
return category['category']
def is_integer(self, s):
try:
int(s)
return True
except Exception as e:
return False
def is_oe(self, years):
return (('oe' in years and 'oe-' not in years) or 'arch' in years)
def is_slang(self, years):
return 'slang' in years or 'colloq' in years or 'Scots' in years
def fix_word(self, word):
if '<' in word or '/' in word or ',' in word:
word = word.split("<")[0]
word = word.split(",")[0]
word = word.split("/")[0]
return word.strip()
|