Views
No views yet
old_irish_cased_ft_100_5_2.txtold_irish_lower_ft_100_5_2.txtold_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/old-irish-ft-vectors", filename="old_irish_lower_ft_100_5_2.txt")
5model = KeyedVectors.load_word2vec_format(model_path, binary=False)
6
7model.similar_by_word('conchobar')1>>> [('chonchobar', 0.7281773090362549),
2 ('conchobair', 0.7064376473426819),
3 ('fergus', 0.6939500570297241),
4 ('conchulaind', 0.6923369765281677),
5 ('conchobor', 0.6832515597343445),
6 ('óenadaig', 0.6077216863632202),
7 ('dochraidi', 0.5989463329315186),
8 ('choba', 0.5952028632164001),
9 ('conchobur', 0.5945655107498169),
10 ('cúculaind', 0.5888893604278564)]