forked from hackerb9/gwordlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1gramsbyfreq.sh
executable file
·310 lines (266 loc) · 10.5 KB
/
1gramsbyfreq.sh
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
#!/bin/bash -e
# 1gramsbyfreq.sh: create lists of the most frequently used English words.
# These wordlists are derived from Google's n-Grams corpus which is
# freely usable under a Creative Commons "CC-BY 3.0" license. (See
# books.google.com/ngrams)
# Technique: Read every word from the Google corpus into an
# associative array and accumulate a count per word.
# Words with different capitalizations are mushed together ("the",
# "The", "THE"), but the most common usage is retained. ("London", not
# "london").
# Side note 1: The raw data is >14GB, and I had assumed awk would take
# a lot of memory for such an array made from that much data, but no,
# there were a lot of repeated entries for the same word in different
# years.
# Side note 2: Part of speech tags mean that the same word can appear
# multiple times in the list. (For example, the word "watch_VERB" is
# counted separately from "watch_NOUN". The word "watch", without a
# PoS, is also counted and is approximately equal to the sum of all
# the different PoS versions).
# Side note 3: I presume someone must have done this before, but if so
# they sure didn't make it easy to find. Googling just keeps leading
# me to wordfreq.info with some guy trying to sell his datasets under
# a restrictive license.
# Options. Comment out this line if you want to use one CPU at a time.
multiprocessing=yup
cleanup() {
# Remove temp files when the script exit
for x in "$tempfile" "${temparray[@]}"; do
if [ -e "$x" ]; then rm "$x"; fi
done
}
trap cleanup EXIT
tempfile="/dev/shm/temp.txt"
if ! touch "$tempfile"; then tempfile="temp.txt"; fi
declare -A temparray # Array of tempfiles for multiprocessing
# Download 14 GiB of data (and awk it down to one ten-thousandth the size.)
echo "PHASE 0: Download all Google nGrams (> 13 GiB)" >&2
# Google Books v3.0 (20200217) comes as 24 files (0 to 23)
wget --no-clobber http://storage.googleapis.com/books/ngrams/books/20200217/eng/1-000{00..23}-of-00024.gz
echo >&2
echo "PHASE 1: Accumulating count of usage for every word in Google nGrams" >&2
cc -o nocommas nocommas.c || exit 1
temparray["regenallwords"]=$(mktemp)
for file in 1-*-of-*.gz; do
temparray[$file]=$(mktemp)
if [[ -s "$file-accumcache" && "$file-accumcache" -nt "$file" ]]; then
echo "$file-accumcache: using cached file" >&2
else
echo "yup" > ${temparray["regenallwords"]}
zcat "$file" | ./nocommas |
awk -v filename="$file" -v tick="'" > ${temparray[$file]} '
BEGIN {
"tput el1" | getline cb;
if (length(cb)==0)
cb="\r \r";
}
{
# Accumulate count over years. Format: WORD [ TAB YEAR SPC COUNT SPC BOOKS ]+
# E.g., Alcohol 1983 905 353 1984 1285 433 1985 1088 449
word=$1;
for (i=3; i<=NF; i=i+3) {
array[word] += $i;
}
}
NR%10^5==0 {
printf("%s\r%s, ", cb, filename) >"/dev/stderr";
printf("line: %gM\t", NR/1E6) >"/dev/stderr";
printf("%s %"tick"d", word, array[word]) >"/dev/stderr";
}
END {
print "." >"/dev/stderr";
for (word in array) print word "\t" array[word];
}
'
mv ${temparray[$file]} "$file-accumcache"
fi &
if [[ ! $multiprocessing ]]; then wait; fi
done
wait
# Did any of the processes flag allwords as needing regeneration?
regenallwords=$(cat ${temparray["regenallwords"]})
if [[ "$regenallwords" || ! -s "allwords.txt" ]]; then
echo "Concatenating all 1gram caches to allwords.txt" >&2
# Remove all underscores to avoid part of speech duplicates.
cat 1-*-of-*.gz-accumcache | grep -v _ > "allwords.txt"
fi
# Sort most common words to the top
if [ -s "casesensitivefreq.txt" -a "casesensitivefreq.txt" -nt "allwords.txt" ]; then
echo "Skipping preliminary sort, casesensitivefreq.txt is newer than allwords.txt">&2
else
echo "Preliminary sort of allwords.txt, saving to casesensitivefreq.txt" >&2
sort -rn -k2 "allwords.txt" > "casesensitivefreq.txt"
fi
# Mush together case-insensitively, retaining the most common capitalization.
echo >&2
echo "PHASE 2: Merging case-insensitively (The, THE, the)" >&2
if [[ "1gramsbyfreq.txt" -nt "casesensitivefreq.txt" ]]; then
echo "Skipping merge: 1gramsbyfreq.txt is newer than casesensitivefreq.txt." >&2
else
cat "casesensitivefreq.txt" | awk -v tick="'" '
BEGIN {
"tput el1" | getline cb;
if (length(cb)==0)
cb="\r \r";
}
{
word=tolower($1);
if (array[word]==0 && word != $1) {
capitalization[word]=$1;
if (NR%10000==0)
printf("%s\rKeeping capitalization of (%"tick"d) %s", cb, NR, capitalization[word]) >"/dev/stderr";
}
array[word]+=$2;
}
END {
printf ("%s\rSaving...", cb) >"/dev/stderr";
for (word in array) {
if (capitalization[word])
print capitalization[word] "\t" array[word];
else
print word "\t" array[word];
}
print "." >"/dev/stderr";
}
' > "$tempfile"
echo "Re-sorting results to 1gramsbyfreq.txt" >&2
sort -rn -k2 "$tempfile" > "1gramsbyfreq.txt"
fi
# Now make a pretty version, showing percentage and accumulation.
echo >&2
echo "PHASE 3: Creating prettified version, frequency-all.txt.gz" >&2
if [[ "frequency-all.txt" -nt "1gramsbyfreq.txt" \
|| "frequency-all.txt.gz" -nt "1gramsbyfreq.txt" ]]; then
echo "Skipping prettification. frequency-all.txt is newer than 1gramsbyfreq.txt" >&2
else
echo -n "Finding total words... " >&2
totalwords=$(awk '{sum+=$2} END{print sum}' < 1gramsbyfreq.txt)
printf "%'d\n" "$totalwords" >&2
echo -n "Accumulating percentages for each word, saving in frequency-all.txt" >&2
cat 1gramsbyfreq.txt | awk -v tick="'" -v totalwords=$totalwords '
BEGIN {
printf( "#%-9s %-22s %15s %12s %12s\n",
"RANKING", "WORD", "COUNT", "PERCENT", "CUMULATIVE" );
}
{
percent=100*$2/totalwords;
cum+=percent;
printf( "%-10s %-22s %"tick"15d %11f%% %11f%%\n", NR, $1, $2, percent, cum );
}
END { print "." >"/dev/stderr"; }
' > frequency-all.txt
fi
if [[ -e frequency-all.txt.gz && frequency-all.txt -nt frequency-all.txt.gz ]]; then
rm frequency-all.txt.gz
fi
if [[ ! -e frequency-all.txt.gz ]]; then
# Uncompressed, file is over 2 GiB. Compressed, it is 0.25 GiB.
echo -n "Compressing to frequency-all.txt.gz" >&2
gzip frequency-all.txt
echo >&2
fi
# It's useful to pare the set down to the most useful words
# * consist of only ASCII alphabetic letters, no number, symbols, or Unicode
# * must appear in a dictionary, such as WordNet or Websters1913 (gcide)
# * must have at least one vowel
# * no curse words or other stop words ("et" "al" "y" "de" "le" "des" "un" "von" "di")
# * maybe cut off if it occurs less than 100,000 times in the corpus.
# Or maybe not... this would rule out publishable, ventriloquism,
# behead, ungentlemanly, fisticuffs, and headscarf.
# "Mewl" only occurs 23,000 times in the entire trillion word corpus.
echo >&2
echo "PHASE 4: Now extracting valid words by comparing to dictionaries." >&2
set -- subphase {a..z}
for dict in wn gcide oed; do
shift
output=alpha1gramsbyfreq-$dict.txt
echo "PHASE 4$1: using dictionary '$dict' to create $output" >&2
if ! dict -h localhost -D | grep -q $dict; then
echo " '$dict' database is not installed locally. Skipping."
continue
fi
if [[ -s "$output" && "$output" -nt "1gramsbyfreq.txt" ]]; then
echo " Skipping, $output is newer than 1gramsbyfreq.txt" >&2
continue
fi
# Set LANG so we don't get unicode characters as alphabetic.
LANG=C grep -i '^[a-z]*[aeiouy][a-z]*\s' 1gramsbyfreq.txt > "$tempfile"
if [[ -s "stopwords.txt" ]]; then
echo " Removing stopwords using 'stopwords.txt'"
grep -i -x -v -f stopwords.txt "$tempfile" >"${tempfile}2"
mv "${tempfile}2" "$tempfile"
fi
# XXX We ought to decompress the dict files and then use comm to
# quickly find common words. The current method of execing `dict`
# over 35 million times (per dictionary) is very slow. As a work
# around, we can limit the count of words checked, stopping after
# $maxcount most frequent words.
# maxcount=65536 # Set maxcount to limit number of words found
echo " Pruning to ${maxcount:+first $maxcount }words actually found in dictionary $dict.">&2
# Note that some dictionaries only find the headword, not inflections
# of a word. For example, "University", but not "Universities".
count=0
cat "$tempfile" | while read word wordcount; do
if dict -h localhost -d $dict -s exact -m "$word" >/dev/null 2>&1; then
echo "$word $wordcount"
count=$((count+1))
fi
total=$((total+1))
if [[ $(($total % 1000)) -eq 0 ]]; then
tput el1 >&2
printf "\r$total: found $count. Current: $word $wordcount">&2
fi
if [[ $maxcount && $count -ge $maxcount ]]; then break; fi
done >$output
echo >&2
done
shopt -s nullglob
if [[ -z "$(echo alpha1gramsbyfreq-*.txt)" ]]; then
echo "No pruned files created. Aborting." >&2
echo "Maybe you need to 'apt install dictd dict-wn dict-gcide'?" >&2
exit 1
fi
# Combine results from all dictionaries.
output=alpha1gramsbyfreq-alldicts.txt
echo "PHASE 4z: merging verified words to create $output" >&2
for f in alpha1gramsbyfreq-*.txt ENDOFLIST; do
if [[ "$f" -nt $output ]]; then
sort -u alpha1gramsbyfreq-*.txt | sort -rn -k2 > $output
echo " done." >&2
break
fi
done
if [[ $f == ENDOFLIST ]]; then
echo " Skipping, $output is newer than alpha1gramsbyfreq-*.txt" >&2
fi
# Now make a pretty version, showing percentage and accumulation.
echo >&2
echo "PHASE 5: Creating prettified version with cumulative percentage." >&2
set -- subphase {a..z}
for unpretty in alpha1gramsbyfreq-*.txt; do
suffix=${unpretty#alpha1gramsbyfreq-}
pretty=frequency-alpha-$suffix
shift
echo "PHASE 5$1: Prettifying $unpretty into $pretty" >&2
if [[ -s "$pretty" && "$pretty" -nt "$unpretty" ]]; then
echo " Skipping prettification as $pretty is newer." >&2
else
echo -n " Finding total usage of words... " >&2
totalwords=$(awk '{sum+=$2} END{print sum}' < $unpretty)
printf "%'d\n" "$totalwords" >&2
echo -n " Accumulating percentages for each word, saving in $pretty" >&2
cat $unpretty | awk -v tick="'" -v totalwords=$totalwords '
BEGIN {
printf( "#%-9s %-22s %15s %12s %12s\n",
"RANKING", "WORD", "COUNT", "PERCENT", "CUMULATIVE" );
}
{
percent=100*$2/totalwords;
cum+=percent;
printf( "%-10s %-22s %"tick"15d %11f%% %11f%%\n", NR, $1, $2, percent, cum );
}
END { print "." >"/dev/stderr"; }
' > $pretty
fi
done
echo "All done." >&2