LLVM-based compiler for LightGBM models
Project description
lleaves 🍃
A LLVM-based compiler for LightGBM decision trees.
lleaves converts trained LightGBM models to optimized machine code, speeding-up inference by ≥10x.
Example
lgbm_model = lightgbm.Booster(model_file="NYC_taxi/model.txt")
%timeit lgbm_model.predict(df)
# 12.77s
llvm_model = lleaves.Model(model_file="NYC_taxi/model.txt")
llvm_model.compile()
%timeit llvm_model.predict(df)
# 0.90s
Why lleaves?
- Speed: Both low-latency single-row prediction and high-throughput batch-prediction.
- Drop-in replacement: The interface of
lleaves.Modelis a subset ofLightGBM.Booster. - Dependencies:
llvmliteandnumpy. LLVM comes statically linked.
Some LightGBM features are not yet implemented: multiclass prediction, linear models.
Installation
conda install -c conda-forge lleaves or pip install lleaves (Linux and MacOS only).
Benchmarks
Ran on a dedicated Intel i7-4770 Haswell, 4 cores. Stated runtime is the minimum over 20.000 runs.
Dataset: NYC-taxi
mostly numerical features.
| batchsize | 1 | 10 | 100 |
|---|---|---|---|
| LightGBM | 52.31μs | 84.46μs | 441.15μs |
| ONNX | 11.00μs | 36.74μs | 190.87μs |
| Treelite | 28.03μs | 40.81μs | 94.14μs |
lleaves |
9.61μs | 14.06μs | 31.88μs |
Dataset: MTPL2
mix of categorical and numerical features.
| batchsize | 10,000 | 100,000 | 1,000,000 |
|---|---|---|---|
| LightGBM | 95.14ms | 992.472ms | 7034.65ms |
| ONNX | 38.83ms | 381.40ms | 2849.42ms |
| Treelite | 38.15ms | 414.15ms | 2854.10ms |
lleaves |
5.90ms | 56.96ms | 388.88ms |
Development
conda env create
conda activate lleaves
pip install -e .
pre-commit install
pytest
# (optional) benchmark dependencies
conda install -c conda-forge treelite onnxruntime onnxmltools
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 lleaves-0.2.0.tar.gz.
File metadata
- Download URL: lleaves-0.2.0.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33bc8b765ba02e7cc1bc6ad30703a30d8a87c035c04802659a8f3e1fca930c99
|
|
| MD5 |
1463c482a3c23cb8766216950b8c0b0b
|
|
| BLAKE2b-256 |
d9661dac7914360d09f7b4aea886fea429710de1de9316bb044036b116dafe34
|
File details
Details for the file lleaves-0.2.0-py3-none-any.whl.
File metadata
- Download URL: lleaves-0.2.0-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
595b5fa0e1b9c7657010081d1f1be9409c79a6ce9cc0ae923826a376a9eb4d52
|
|
| MD5 |
7365829eb19ff3715afe4141f0edb1ab
|
|
| BLAKE2b-256 |
d96c3e07e9a17bfa95d737e7443f91190f959f7f5d7e0a3194d0732aecdc5f24
|