LoginSignup
3
4

More than 5 years have passed since last update.

scikit-learnを使って糖尿病データ(diabetes)を解析する

Last updated at Posted at 2018-06-16

scikit-learnを使って糖尿病データ(diabetes)を解析してみました。以下の機械学習モデルを使っています。

  • 多項式特徴量 (PolynomialFeatures) + 線形モデル L1正則化 (Lasso)
  • 多項式特徴量 + 線形モデル L2正則化 (Ridge)
  • ランダムフォレスト
  • サポートベクターマシン 線形カーネル (SVR kernel='linear')
  • サポートベクターマシン ガウシアンカーネル (SVR kernel='rbf')

ソースコード GitHub unhurried/scikit-learn-diabetes

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4