word2vec 中是否有类似单词的波兰语实现?

Is there any Polish implementation for similar words in word2vec?

我找到了 GoogleNews-vectors-negative300.bin 库,但仅适用于 ENG 词,word2vec 中是否有类似词的波兰语实现?

我已经尝试使用 cc.pl.300.bin 和 NKJP-PodkorpusMilionowy 库...

    public  Word2Vec getWord2Vec() {
        File gModel = new File("C:/Users/user/Desktop/GoogleNews-vectors-negative300.bin.gz");
        return WordVectorSerializer.readWord2VecModel(gModel);
    }

文件...

https://dl.fbaipublicfiles.com/fasttext/vectors-wiki/wiki.pl.vec

...链接自...

https://fasttext.cc/docs/en/pretrained-vectors.html

...可能对您有用,如果您的库加载简单的 'text' 格式来交换词向量。 (它不是 Facebook FastText 特定的二进制格式,就像您的 cc.pl.300.bin 文件一样。)