Neptune.ai LightGBM integration library
Project Links
Meta
Author: neptune.ai
Requires Python: >=3.7,<4.0
Classifiers
Development Status
- 4 - Beta
Environment
- Console
Intended Audience
- Developers
- Science/Research
License
- OSI Approved :: Apache Software License
Natural Language
- English
Operating System
- MacOS
- Microsoft :: Windows
- POSIX
- Unix
Programming Language
- Python :: 3
- Python :: 3.7
- Python :: 3.8
- Python :: 3.9
- Python :: 3.10
- Python :: 3.11
- Python :: Implementation :: CPython
Topic
- Scientific/Engineering :: Artificial Intelligence
- Software Development :: Libraries :: Python Modules
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
Mar 29, 2023
2.0.0
Feb 20, 2023
1.0.0
Nov 07, 2022
0.10.0
Sep 12, 2022
0.9.14
Jul 07, 2021
0.9.13
Jun 18, 2021
0.9.12
Jun 17, 2021
0.9.11
Jun 10, 2021
0.9.10
May 27, 2021
0.9.9
May 11, 2021
0.9.8
May 10, 2021
0.9.7
Apr 29, 2021
0.9.4
Mar 25, 2021
0.9.3
Mar 24, 2021
0.9.2
Mar 24, 2021
0.9.0