Wordembeddings
word_embeddingsThis dataset contains the embeddings of 8000 words pulled from the wonderwords package (https://pypi.org/project/wonderwords/).
Embedding model: "text-embedding-3-large" from OpenAI
The word embeddings are stored as a dataframe; to read data run:
df_word_embeds = pd.read_pickle("8000words.pkl")
The words used in the embeddings are stored in word_list as a json; to read data run:
with open("word_list", "r") as f:
... word_list = json.load(f)
Indexes of word_list match indexes of… See the full description on the dataset page: https://huggingface.co/datasets/efarrall/word_embeddings.word-embeddings-dataset
