LoginSignup
0
0

More than 1 year has passed since last update.

Google Colab GPU使用時のトラブル対応

Posted at

CatBoostError: Multiple eval sets are not supported on GPU

model = CatBoostRegressor(task_type='GPU')

model.fit(X_train,
          y_train,
          eval_set=[(X_train, y_train), (X_valid, y_valid)], # これが良くないらしい 
         )

eval_set の行を削除したら、エラーで止まらずに動作しました。

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