Le référentiel officiel GitHub est ci-dessous. Voir LISEZ-MOI pour la méthode d'installation détaillée. fastText : https://github.com/facebookresearch/fastText
L'environnement que j'ai essayé cette fois est le suivant.
$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.5 LTS"
Préparez python, numpy et scipy à l'avance. Anaconda est pratique.
$ wget https://repo.continuum.io/archive/Anaconda3-4.4.0-Linux-x86_64.sh
Nécessite C ++ pour créer fastText. Sinon, installez-le avec la commande suivante.
$ sudo apt-get install build-essential
Téléchargez et installez à partir de GitHub.
$ git clone https://github.com/facebookresearch/fastText.git
$ cd fastText
$ make
Téléchargez le modèle entraîné japonais distribué dans le référentiel.
$ wget https://s3-us-west-1.amazonaws.com/fasttext-vectors/wiki.ja.zip .
Pendant l'édition
Recommended Posts