Hi,
I am trying to import Korean GloVe embedding matrix with SpacyFeaturizer.
Seems spacy.load() may not load txt file. Is there any way to use the pretrained txt file?
Thanks
Hi,
I am trying to import Korean GloVe embedding matrix with SpacyFeaturizer.
Seems spacy.load() may not load txt file. Is there any way to use the pretrained txt file?
Thanks
Could you explain in detail what you’ve done, code-wise, and what you expected?
To run spaCy with vectors you’d typically run it with a pre-trained featurizer model, the languages that are supported are listed here. I don’t think spaCy comes with a pre-trained Korean model.
If you have GloVe vectors trained via Gensim, you may instead appreciate the featurizer that I’ve implemented here. If I recall correctly the BytePairFeaturizer and FastTextFeaturizer also support Korean.