LoginSignup
2
1

More than 5 years have passed since last update.

【翻訳】scikit-learn 0.18 User Guide 1.15. アイソトニック回帰

Last updated at Posted at 2017-06-28

http://scikit-learn.org/0.18/modules/isotonic.html を google翻訳した

scikit-learn 0.18 ユーザーガイド 1. 教師付き学習 より


1.15. アイソトニック回帰

IsotonicRegression クラスは、非減少関数をデータに適合させます。 それは以下の問題を解決します:

minimize \sum_i w_i (y_i - \hat{y}_i)^2
subject\ to\ \hat{y}_{min} = \hat{y}_1 \le \hat{y}_2 ... \le \hat{y}_n = \hat{y}_{max}

各 $w_i$ は厳密に正であり、各 $y_i$ は任意の実数である。 これは、平均二乗誤差に関して最も近似しない非減少要素からなるベクトルを生成する。 実際には、この要素のリストは区分的線形である関数を形成する。


scikit-learn 0.18 ユーザーガイド 1. 教師付き学習 より

©2010 - 2016、scikit-learn developers(BSDライセンス)。

2
1
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
2
1