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

Light GBM のパラメータ・チューニング

Posted at

はじめに

この記事では、LightGBMのパラメータについてまとめていきます。公式ドキュメントを日本語訳しただけですが、参考になれば幸いです。(LightGBM自体の話も随時更新していきたいと思います。)

重要な3つのパラメータ

max_depth

使用する木の深さを指定します。num_leavesというパラメータと一緒に考えていきます。

num_leaves

モデルの複雑さを決めるパラメータになります。理論的には、2^(max_depth) が良いみたいですが、実務的には、2^(max_depth)よりも小さい値が良いみたいです。max_depthを7に指定した場合は、num_leavesは70~80くらいに指定したらいいのでは?と書いてありました。

min_data_in_leaf

オーバーフィット(過学習)を防ぐために、重要なパラメータになります。トレーニングデータのサンプル数とnum_leavesの値によって決めようと書かれてます。大きいサンプル数を扱う場合は、数百から数千くらいの値が良いみたいです。

最後に

綺麗にまとまっているサイト見つけました。こちらも是非一読を!

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