This repository includes utility functions to build diachronic Word2Vec models in gensim, using an Elasticsearch index to collect the data, and SpaCy and NLTK to preprocess it.
The data is read in year batches from Elasticsearch and preprocessed. Every year's preprocessed data is saved to hard disk (as a pickled list of lists of words), so that for multiple passes (e.g., one to build the vocabulary, one to train the model), the data is available more readily.
For the whole time period, a full model will be generated, which will be used as pre-training data for the individual models. Alternatively, independent models can be trained by setting the -in
flag (see #Usage)
The data is fetched from Elasticsearch. By default, this will attempt to fetch from a local instance (i.e., localhost:9200
) For local development, install Elasticsearch.
In order to fetch data from a remote Elasticsearch cluster and/or on a different port, set environment variables. For instance, to fetch from http://url-of-your-cluster:9900
, you would set:
export ES_HOST=http://url-of-your-cluster
export ES_PORT=9900
To connect to your remote cluster through SSL(recommended), you will also need to set the following variables:
export API_ID=asdfgjkl
export API_KEY=zxvnmnl
export CERTS_LOCATION=/path/to/ca-bundle.crt
The code was tested in Python 3.9. Create a virtualenv (python -m venv your_env_name
), activate it (source your_env_name/bin/activate
) and the run
pip install -r requirements.txt
With activated environment, download the SpaCy language models required for preprocessing as follows:
python -m spacy download en_core_web_sm
See (the SpaCy documentation)[https://spacy.io/usage/models].
To train models, with activated environment, use the command
python generate_models.py -i your-index-name -s 1960 -e 2000 -md /path/to/output/models
Meaning of the flags:
- i: name of the index
- s: start year of training
- e: end year of training
- md: set the output directory where models will be written Optional flags:
- f: field from which to read the training data (default: 'content')
- n: number of years per model (default: 10)
- sh: shift between models (default: 5)
- sd: path to output preprocessed training data (default: 'source_data')
- l: language of the training data (default: 'english')
- mc: minimum count of a word in the training data to be included in the word models' vocabulary (default: 100)
- vs: size of the word embedding vectors (default: 100)
- mv: set to integer (e.g., 50000) if the vocabulary should be pruned while training the model, without a value provided, there is no limit on vocabulary size
- ws: window size of the words to be trained (default: 5)
- lem: set this flag if you want the data to be lemmatized
- in: set this flag if you want to train independent models, i.e., models which do not depend on data from other time slices
You can also run
python generate_models.py -h
to see this documentation.
The training script generates three kinds of output:
- preprocessing output, the result of tokenizing, stop word removal and (optional) lemmatization of the source data from Elasticsearch, saved as Python binary
.pkl
files, named after index and year, insource_directory
(set through-sd
flag). - word2vec output, the result of traning on the preprocessed data, saved as KeyedVectors, named after the index and time window, with the extension
.wv
in themodel_directory
(set through-md
flag). - statistics about the number of tokens (all words in the model not discarded during stopword removal) and number of terms (all distinct tokens), named after the index and time window, and saved as a comma-separated table (
.csv
) in themodel_directory
.
To inspect the preprocessing output, install the dependecies of this repository (see (Prerequesites)[#Prerequesites]), then open a Python terminal. To get a list of sentences (each a list of words), use the following workflow:
from util import inspect_source_data
sentences = inspect_source_data('/{filepath}/{index_name}-{year}.pkl')
To write the source data to a text file, use the following workflow:
from util import source_data_to_file
source_data_to_file('/{filepath}/{index_name}-{year}.pkl')