プログラミング備忘録

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

scikit-learnのメモ書き

できること

  • 分類

    • linearSVC
    • k近傍法
    • kernelSVC
  • クラスタリング

    • Kmean
    • トピックモデル(LDA)
  • 回帰

    • SGD
    • SVR
    • ロジスティック回帰
  • 特徴量抽出

    • PCA

付属データセット

  • Iris
  • Boston house-prices
  • Diabetes
  • Digits
  • Linnerud

参考

scikit-learn に付属しているデータセット – Python でデータサイエンス

インストール

pip install scikit-learn