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 prediction 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.
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 Runtime | 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 | 678,000 |
|---|---|---|---|
| LightGBM | 95.14ms | 992.47ms | 7034.65ms |
| ONNX Runtime | 38.83ms | 381.40ms | 2849.42ms |
| Treelite | 38.15ms | 414.15ms | 2854.10ms |
lleaves |
5.90ms | 56.96ms | 388.88ms |
Advanced usage
To avoid any Python overhead during prediction you can link directly against the generated binary.
See benchmarks/c_bench/ for an example of how to do this.
The function signature can change between major versions.
Development
conda env create
conda activate lleaves
pip install -e .
pre-commit install
./benchmarks/data/setup_data.sh
pytest
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.5.tar.gz.
File metadata
- Download URL: lleaves-0.2.5.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1016966a011a6ec1630f99d050d0bde07bb4f67204ddd3b39f5f7a9d89105cb
|
|
| MD5 |
d82a8c29fa6a3ddfba89e98c7c866dc1
|
|
| BLAKE2b-256 |
de7432a8b7b7f4620831dc102ddade36345a1066b6340760e9fa4cc0ae500135
|
File details
Details for the file lleaves-0.2.5-py3-none-any.whl.
File metadata
- Download URL: lleaves-0.2.5-py3-none-any.whl
- Upload date:
- Size: 20.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
903c377984d0f4896e63b583438d710ef167bd46d898ea7ef9f3ac1bbe291a00
|
|
| MD5 |
fc42094f12d2559e41184c8a9897e1da
|
|
| BLAKE2b-256 |
660ba49329d558ff81bf02630c2e5914aadab440479ffaf1e3e0b89466a61c81
|