2021-08-22 12:24:50 +00:00
|
|
|
|
---
|
|
|
|
|
title: LightGBM
|
2023-06-22 13:08:26 +00:00
|
|
|
|
displayed_sidebar: mainSidebar
|
2021-08-22 12:24:50 +00:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
The [lightgbm_example](https://github.com/allegroai/clearml/blob/master/examples/frameworks/lightgbm/lightgbm_example.py)
|
|
|
|
|
script demonstrates the integration of ClearML into code that uses LightGBM.
|
|
|
|
|
|
|
|
|
|
The example script does the following:
|
|
|
|
|
* Creates a dataset for LightGBM to train a model
|
|
|
|
|
* Specifies configuration which are automatically captured by ClearML
|
|
|
|
|
* Saves model which ClearML automatically captures
|
|
|
|
|
* Creates an experiment named `LightGBM`, which is associated with the `examples` project.
|
|
|
|
|
|
|
|
|
|
## Scalars
|
|
|
|
|
|
2022-05-22 07:27:30 +00:00
|
|
|
|
The scalars logged in the experiment can be visualized in a plot, which appears in the ClearML web UI, in the **experiment's page > SCALARS**.
|
2021-08-22 12:24:50 +00:00
|
|
|
|
|
|
|
|
|
![LightGBM scalars](../../../img/examples_lightgbm_scalars.png)
|
|
|
|
|
|
|
|
|
|
## Hyperparameters
|
|
|
|
|
|
2023-01-12 10:49:55 +00:00
|
|
|
|
ClearML automatically logs the configurations applied to LightGBM. They appear in **CONFIGURATIONS > HYPERPARAMETERS > GENERAL**.
|
2021-08-22 12:24:50 +00:00
|
|
|
|
|
|
|
|
|
![LightGBM hyperparameters](../../../img/examples_lightgbm_config.png)
|
|
|
|
|
|
|
|
|
|
## Artifacts
|
|
|
|
|
|
2022-01-13 07:42:36 +00:00
|
|
|
|
Models created by the experiment appear in the experiment’s **ARTIFACTS** tab. ClearML automatically logs and tracks
|
|
|
|
|
models and any snapshots created using LightGBM.
|
2021-08-22 12:24:50 +00:00
|
|
|
|
|
|
|
|
|
![LightGBM model](../../../img/examples_lightgbm_model.png)
|
|
|
|
|
|
|
|
|
|
## Console
|
|
|
|
|
|
2022-05-22 07:27:30 +00:00
|
|
|
|
All other console output appears in **CONSOLE**.
|
2021-08-22 12:24:50 +00:00
|
|
|
|
|
|
|
|
|
![LightGBM console](../../../img/examples_lightgbm_console.png)
|
|
|
|
|
|
|
|
|
|
|