0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

機械学習:「 第 2 章: 非線形回帰モデル 」

Last updated at Posted at 2019-06-05

回帰問題とは与えられた入力値から出力値を予測する問題のことであり、その中で出力値を非線形関数(曲線)で近似し、予測することを非線形回帰という。
非線形回帰モデルでは、回帰係数として基底関数と呼ばれる既知の非線形関数とパラメータベクトルの線形結合を使用し、未知パラメータω線形回帰モデルと同様に最小二乗法や最尤法を用いて推定する。
yi = ω0 + ΣwjΦj(xj) + εi

よく使われる基底関数としては、多項式関数、ガウス型関数、スプライン/Bスプライン関数等がある。
最尤法による予測値は以下の式で計算される。
ý = Φ(Φ(train)TΦ(train) )-1 Φ(train)T y((train)
ý:予測値
y:データ
Φ:非線形関数の行列

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?