プログラミング備忘録

初級プログラマ。python、DL勉強中

2018-04-29から1日間の記事一覧

cProfileのメモ

pythonの標準ライブラリのプロファイラは3つ hotshot Profile cProfile cProfileを試した時のメモ。 import cProfile cpr=cProfile.Profile() sumi=0 cpr.enable() for i in range(10000): print(i) sumi=sumi+1 cpr.disable() cpr.print_stats()

word2vecを使ってみた

試しにword2vecを使ってみた 引っ越しました qiita.com 参考 【Python】Word2Vecの使い方 - Qiita https://show-go.jp/top/2017/10/25/word2vec_memo/ https://marunouchi-tech.i-studio.co.jp/3705/ word2vecでベクトルから単語を出力する - Qiita Word2Vec…