前提・実現したいこと
ずぶの初心者です。word2vec を使って言語の分析をしたいです。
まずword2vecをうまく動かしたいです。gensimが動きません。
現在jupyter labで書いています。
コラボラトリではjanomeが読み込まないので、やはり自分のパソコンで処理したいです。
発生している問題・エラーメッセージ
#エラー1 RuntimeError:Compiled extensions are unavailable. If you've installed from a package, ask the package maintainer to include compiled extensions. If you're building Gensim from source yourself, install Cython and a C compiler, and then run `python setup.py build_ext --inplace` to retry. #エラー2 ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. conda-repo-cli 1.0.4 requires pathlib, which is not installed. anaconda-project 0.10.2 requires ruamel-yaml, which is not installed. #エラー3 ImportError: cannot import name 'word2vec' from 'gensim.models' (unknown location)
該当のソースコード
元のコードは著作物なので一部省かせていただきます。
Python
1from gensim.models import Word2Vec 2from janome.tokenizer import Tokenizer 3 4#形態素解析のオブジェクト 5text = Tokenizer() 6 7#txtファイルからデータの読み込み 8text_file = open("aaaaaa.txt") 9txt = text_file.read() 10 11#読み込んだデータを形態素解析 12results = [] 13lines = txt.split("\r\n") 14for i in lines: 15 text_c = text.tokenize(i,wakati=True) 16 results.append(list(text_c)) 17 18#モデル 19model = Word2Vec(results, min_count=1) 20vector = model.wv['aaa'] 21 22#ベクトル表現 23print(vector) 24 25pro = model.wv.most_similar(positive=['aaa'], topn=5) 26#pro = model.wv.similar_by_vector('aaa') 27#pro = model.wv.similar_by_word('aaa') 28for item in pro: 29 print(item[0], item[1])
試したこと
word2vecをインストールするために(ここでもエラーが発生)、python3.7をインストールしました。
gensimはpipにて単独インストールしました。
anacondaにてword2vecをインストールを確認のち、実行するもgensimが動かず上記のエラーが出ました。
Cython, a C compiler(エラー発生)をインストールするもpython setup.py build_ext --inplace
の意図が分からず。
pip install --upgrade setuptoolsを行うもエラー2が発生
一度pipでインストールしたgensimをアンインストールのち、condaでインストールしました。
するとエラー3が置きました。
補足情報(FW/ツールのバージョンなど)
jupyter lab 3.2.1
word2vec 0.9.4
windows10
あくまで素人ですので至らぬ表記かとは思いますが、助けてください。
とにかくword2vecがうまく動かせたらなんでもいいです。
ですがパソコンに無理をさせないようにお願い致します(不可逆的なことは避けたいです)。
回答1件
あなたの回答
tips
プレビュー