Neptune.ai LightGBM integration library
Project description
Neptune + LightGBM Integration
Experiment tracking, model registry, data versioning, and live model monitoring for LightGBM trained models.
What will you get with this integration?
- Log, display, organize, and compare ML experiments in a single place
- Version, store, manage, and query trained models, and model building metadata
- Record and monitor model training, evaluation, or production runs live
What will be logged to Neptune?
- training and validation metrics,
- parameters,
- feature names, num_features, and num_rows for the train set,
- hardware consumption (CPU, GPU, memory),
- stdout and stderr logs,
- training code and Git commit information,
- other metadata
Example dashboard with train-valid metrics and selected parameters
Resources
- Documentation
- Code example on GitHub
- Example of a run logged in the Neptune app
- Run example in Google Colab
Example
# On the command line:
pip install neptune-lightgbm
# In Python:
import lightgbm as lgb
import neptune
from neptune.integrations.lightgbm import NeptuneCallback
# Start a run
run = neptune.init_run(
project="common/lightgbm-integration",
api_token=neptune.ANONYMOUS_API_TOKEN,
)
# Create a NeptuneCallback instance
neptune_callback = NeptuneCallback(run=run)
# Prepare datasets
...
lgb_train = lgb.Dataset(X_train, y_train)
# Define model parameters
params = {
"boosting_type": "gbdt",
"objective": "multiclass",
"num_class": 10,
...
}
# Train the model
gbm = lgb.train(
params,
lgb_train,
callbacks=[neptune_callback],
)
Support
If you got stuck or simply want to talk to us, here are your options:
- Check our FAQ page
- You can submit bug reports, feature requests, or contributions directly to the repository.
- Chat! When in the Neptune application click on the blue message icon in the bottom-right corner and send a message. A real person will talk to you ASAP (typically very ASAP),
- You can just shoot us an email at support@neptune.ai
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neptune_lightgbm-2.0.0.tar.gz.
File metadata
- Download URL: neptune_lightgbm-2.0.0.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52e0f2f1df57c0fae5b10d50c5f8e4264457f740ac8e04b3b97d2cae49c8629a
|
|
| MD5 |
03ea92ff249e9c76aa7ca5a58578797c
|
|
| BLAKE2b-256 |
24208e12db5d9b599986450a2155581dfd42241ecfd29d353adf6099968560ca
|
File details
Details for the file neptune_lightgbm-2.0.0-py3-none-any.whl.
File metadata
- Download URL: neptune_lightgbm-2.0.0-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1413068c34c1fd534b89b407e8da27485401d5ae3e2bb21f683153b72c5a53df
|
|
| MD5 |
507b7d1bf0928c45961d5a235bd00ac4
|
|
| BLAKE2b-256 |
296ba5c4f0fc4e011fe70c0eddb23486e477945cc4984ddaebc1e261ad074e6f
|