Skip to content

Commit

Permalink
Fix LGBM again... (#538)
Browse files Browse the repository at this point in the history
* import

* fix for lgb 4.0

* missing comma
  • Loading branch information
tcapelle authored Jun 18, 2024
1 parent 0c7ed7d commit db860bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion colabs/boosting/Simple_LightGBM_Integration.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
" num_boost_round=30,\n",
" valid_sets=lgb_eval,\n",
" valid_names=('validation'),\n",
" early_stopping_rounds=5\n",
" early_stopping_rounds=5,\n",
" callbacks=[wandb_callback()],\n",
" )"
]
Expand Down

0 comments on commit db860bf

Please sign in to comment.