研究ブログ

読んだ論文とか試したライブラリとかを紹介

【論文紹介】A speed-optimized and cache-friendly implementation of stochastic gradient-boosted decision trees for multivariate classification

論文のダウンロード先[1609.06119] FastBDT: A speed-optimized and cache-friendly implementation of stochastic gradient-boosted decision trees for multivariate classification 論文の内容 Gradient Boosting Decision Treeの高速化を、特徴量の構造…

pythonとnetworkxを使ったHITS解析

networkxにはHITS解析の実装も存在します。そこで同ライブラリを利用してHITSによるグラフ解析手法を紹介します。 利用するライブラリ 前回の記事で紹介した通り、networkxとその依存ライブラリであるnumpy,scipyがインストールされている事が前提です。 今…

pythonとnetworkxを使ったPageRank解析

pythonにはnetowrkxという便利なグラフ解析ライブラリが存在します。 このライブラリはかなり良くできていて ・Rのigraph等のライブラリと比較してサブグラフの出力結果へのアクセス手法が用意 ・numpyやscipy等との連携がかなり進んでおり、大規模なグラフ…