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

问题描述 投票:0回答:1

我发现了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);
    }
java nlp word2vec polish
1个回答
0
投票

文件...

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

...链接自...

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

...如果您的图书馆加载了用于交换单词向量的简单“文本”格式,则可能对您有用。 (与cc.pl.300.bin文件不同,它不是Facebook FastText特定的二进制格式。)

© www.soinside.com 2019 - 2024. All rights reserved.