LoginSignup
2
4

More than 1 year has passed since last update.

LightGBMをOptunaでチューニング

Last updated at Posted at 2021-06-06

LightGBMをOptunaでチューニングする

前提条件

Python 3.7

Optunaでチューニング

import部分を書き換えるだけ。  
これで、KaggleのHouse Pricesコンペの結果が0.13120 -> 0.12557に改善した。

変更前

 import lightgbm as lgb

変更後

 import optuna.integration.lightgbm as lgb

参考

LightGBMとOptunaを導入・動かしてみる

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