Giter VIP home page Giter VIP logo

scikit_handbook's Introduction

scikit-learnデータ分析 実装ハンドブック

scikit

書籍「scikit-learnデータ分析ハンドブック」のサポートサイトです。本書籍で使用するサンプルコードがまとめてあります。

章の構成

  • 第1章:機械学習とは何か
  • 第2章:scikit-learnと開発環境
  • 第3章:回帰
  • 第4章:分類
  • 第5章:クラスタリング
  • 第6章:次元削減
  • 第7章:モデルの評価
  • 第8章:Preprocessing、実データ分析
  • 第9章:scikit-learn API

正誤表

ページ 補足
2章 p50:2.4節説明の最初 械学習 機械学習
3章 p81:モデルからのパラメータの取り出しの直前 記載漏れ パラメータから住宅価格の上昇下落に影響がある特徴量がわかります。2.573のRMは上昇。
3章 p130:MSE trainの数値 11.724 11.72
4章 p186:y=0のヒンジ損失関数 -1+θx 1+θx
7章 p290:分類評価方法の表の左上 (FalseNegative) (True Negative)
7章 p290:分類評価方法の表の左下 (FalseNegative) (False Negative)
8章 p353:ソースコードの6行目 x_pos = df['POSIX'].reshape(-1,1) x_pos = x_pos.reshape(-1,1)またはx_pos = df['POSIX'].values.reshape(-1,1)
8章 p420:ソースコードの1行目 sumweight = (normratings*user_corr_top5).sum(axis = 1) sumweight = ((normratings.notnull())*user_corr_top5.abs()).sum(axis = 1)
8章 p420:ソースコードの5行目 predict.sort_values(ascending = False) predict.sort_values(ascending = False).head()

ライブラリのバージョン

  • matplotlib:3.1.2
  • numpy:1.17.4
  • pandas:0.25.3
  • sklearn:0.21.3
  • mlxtend:0.14.0

問い合わせ

本書のお問い合わせ、ご要望、記載の誤植があれば以下メールアドレスにお問い合わせください。

[email protected]

scikit_handbook's People

Contributors

ayukat1016 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.