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 3 years have passed since last update.

Pythonではじめる機械学習 レポート⑥

Last updated at Posted at 2020-05-31

#6章 アルゴリズムチェーンとパイプライン
 多くの機械学習アルゴリズムにおいて、データの表現は非常に重要である。
そのため、データを変換する処理と機械学習の処理が複数あったとき、
連鎖的に実行する必要がある。
scikit-learnでは、Pipelineクラスを使って、
複数の処理ステップを繋ぎ、1つのEstimator(推定器)にできる。

##6.1 汎用パイプラインインターフェイス
 パイプラインに並べるEstimator(処理)に関する制約は、
次に使うデータを呼び出すためのtransformメソッドの定義のみでよい。
無題.png
無題.png
無題.png

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?