This is a
Gensim KeyedVectors conversion of the standard
GloVe 840B 300d embeddings by Pennington, Socher, & Manning (2014).
1from gensim.scripts.glove2word2vec import glove2word2vec
2from gensim.models import KeyedVectors
3
4glove2word2vec("glove.840B.300d.txt", "glove.840B.300d.w2v.txt")
5model = KeyedVectors.load_word2vec_format("glove.840B.300d.w2v.txt", binary=False)
6model.save("glove.840B-300d.wv")
This is the default model for the
Open Creativity Scoring semantic distance approach. Normalization values for scaling raw cosine distances to a 1–7 range:
Calibrated in Dumas, D., Organisciak, P., & Doherty, M. (2021). Measuring divergent thinking originality with human raters and text-mining models. Psychology of Aesthetics, Creativity, and the Arts, 15(4), 645–663.
Due to the large file size (~5.4 GB), the gensim-converted model files are not hosted here. To use this model:
For LLM-based creativity scoring (recommended for new research), see the
ocsai Python package.