This repository will hold tools or resources useful (to me at least :) ) for text processing.
Currently it contains a list of word frequencies. The data was obtained from the Google Ngram dataset.
The specific data used here comes from the set of English 1-grams from 2012-07-01, with the following cleanup:
- Only files for the letters of the alphabet were used:
- Only counts for lowercase words from the last available year, 2008, were used, with this filter:
grep "^[a-z]*.2008" |sed -e 's/2008.\([0-9]*\)[^0-9].*$/\1/g'
- Some remaining noise was further removed with this filter:
egrep "\t"
- The results for each letter were concatenated into a single file.
This repository as well as the Google N-gram compilation are licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
