Views
No views yet
early_modern_irish_cased_ft_100_5_2.txtearly_modern_irish_lower_ft_100_5_2.txtearly_modern_irish_lower_demutated_ft_100_5_2.txtemb_size=100, window=5, min_count=2, n_epochs=100) and saved as KeyedVectors (see Gensim Documentation).1from gensim.models import KeyedVectors
2from huggingface_hub import hf_hub_download
3
4model_path = hf_hub_download(repo_id="ancatmara/early-modern-irish-ft-vectors", filename="early_modern_irish_cased_ft_100_5_2.txt")
5model = KeyedVectors.load_word2vec_format(model_path, binary=False)
6
7model.similar_by_word('Laighen')1>>> [('Laighe', 0.8656445741653442),
2 ('Laighenáin', 0.8017030358314514),
3 ('Osraighe', 0.7939673662185669),
4 ('Laighean', 0.7764200568199158),
5 ('Connacht', 0.757500171661377),
6 ('Mumhan', 0.749495267868042),
7 ('Ereann', 0.7490534782409668),
8 ('Laigen', 0.7099151611328125),
9 ('Maighen', 0.704881489276886),
10 ('Laighnibh', 0.7041199207305908)]