## Introduction
*Hummingbird* is a library for compiling trained traditional ML models into tensor computations. *Hummingbird* allows users to seamlessly leverage neural network frameworks (such as [PyTorch](https://pytorch.org/)) to accelerate traditional ML models. Thanks to *Hummingbird*, users can benefit from: (1) all the current and future optimizations implemented in neural network frameworks; (2) native hardware acceleration; (3) having a unique platform to support for both traditional and neural network models; and have all of this (4) without having to re-engineer their models.
Currently, you can use *Hummingbird* to convert your trained traditional ML models into [PyTorch](https://pytorch.org/), [TorchScript](https://pytorch.org/docs/stable/jit.html), [ONNX](https://onnx.ai/), and [TVM](https://docs.tvm.ai/)). *Hummingbird* [supports](https://github.com/microsoft/hummingbird/wiki/Supported-Operators) a variety of ML models and featurizers. These models include
[scikit-learn](https://scikit-learn.org/stable/) Decision Trees and Random Forest, and also [LightGBM](https://github.com/Microsoft/LightGBM) and [XGBoost](https://github.com/dmlc/xgboost) Classifiers/Regressors. Support for other neural network backends and models is on our [roadmap](https://github.com/microsoft/hummingbird/wiki/Roadmap-for-Upcoming-Features-and-Support).
Hummingbird also provides a convenient uniform "inference" API following the Sklearn API. This allows swapping Sklearn models with Hummingbird-generated ones without having to change the inference code. By converting the models to PyTorch and TorchScript it also becomes possible to serve them using [TorchServe](https://github.com/pytorch/serve).
## How Hummingbird Works
Hummingbird works by reconfiguring algorithmic operators such that we can perform more regular computations which are amenable to vectorized and GPU execution. Each operator is slightly different, and we incorporate multiple strategies. This example explains one of Hummingbird's strategies for translating a decision tree into tensors involving GEMM (GEneric Matrix Multiplication), where we implement the traversal of the tree using matrix multiplications. (GEMM is one of the three tree conversion strategies we currently support.)
<p align="center">
<img src="https://github.com/microsoft/hummingbird/raw/main/website/images/1-simple-reg-tree.png" width=600 >
<br>
<em>Simple decision tree</em>
</p>
In this example, the decision tree has four decision nodes (orange), and five leaf nodes (blue). The tree takes a feature vector with five elements as input. For example, assume that we want to calculate the output of this observation:
<p align="center">
<img src="https://github.com/microsoft/hummingbird/raw/main/website/images/2-calc-output.png" width=400 >
</p>
**Step 1:** Multiply the `input tensor` with tensor `A` (computed from the decision tree model above) that captures the relationship between input features and internal nodes. Then compare it with tensor `B` which is set to the value of each internal node (orange) to create the tensor `input path` that represents the path from input to node. In this case, the tree model has 4 conditions and the input vector is 5, therefore, the shape of tensor `A` is 5x4 and tensor B is 1x4.
<p align="center">
<img src="https://github.com/microsoft/hummingbird/raw/main/website/images/3-matrix.png" width=450 >
</p>
**Step 2:** The `input path` tensor will be multiplied with tensor `C` that captures whether the internal node is a parent of that internal node, and if so, whether it is in the left or right sub-tree (left = 1, right =-1, otherwise =0) and then check the equals with tensor `D` that captures the count of the left child of its parent in the path from a leaf node to the tree root to create the tensor output path that represents the path from node to output. In this case, this tree model has 5 outputs with 4 conditions, therefore, the shape of tensor `C` is 4x5 and tensor `D` is 1x5.
<p align="center">
<img src="https://github.com/microsoft/hummingbird/raw/main/website/images/4-matrixnext.png" width=450 >
</p>
**Step 3:** The `output path` will be multiplied with tensor `E` that captures the mapping between leaf nodes to infer the final prediction. In this case, tree model has 5 outputs, therefore, shape of tensor `E` is 5x1.
<p align="center">
<img src="https://github.com/microsoft/hummingbird/raw/main/website/images/5-singletensor.png" width=450>
</p>
And now Hummingbird has compiled a tree-based model using the GEMM strategy! For more details, please see [Figure 3](https://scnakandala.github.io/papers/TR_2020_Hummingbird.pdf) of our paper.
_Thank you to [Chien Vu](https://www.linkedin.com/in/vumichien/) for contributing the graphics and descriptions in his [blog](https://towardsdatascience.com/standardizing-traditional-machine-learning-pipelines-to-tensor-computation-using-hummingbird-7a0b3168670) for this example!_
## Installation
Hummingbird was tested on Python 3.9, 3.10 and 3.11 on Linux, Windows and MacOS machines. (TVM only works through Python3.10.) It is recommended to use a virtual environment (See: [python3 venv doc](https://docs.python.org/3/tutorial/venv.html) or [Using Python environments in VS Code](https://code.visualstudio.com/docs/python/environments).)
Hummingbird requires PyTorch >= 1.6.0. Please go [here](https://pytorch.org/) for instructions on how to install PyTorch based on your platform and hardware.
Once PyTorch is installed, you can get Hummingbird from pip with:
```
python -m pip install hummingbird-ml
```
If you require the optional dependencies lightgbm and xgboost, you can use:
```
python -m pip install hummingbird-ml[extra]
```
See also [Troubleshooting](TROUBLESHOOTING.md) for common problems.
## Examples
See the [notebooks](notebooks) section for examples that demonstrate use and speedups.
In general, Hummingbird syntax is very intuitive and minimal. To run your traditional ML model on DNN frameworks, you only need to `import hummingbird.ml` and add `convert(model, 'dnn_framework')` to your code. Below is an example using a [scikit-learn random forest](https://scikit-learn.org/stable/modules/ensemble.html#forest) model and [PyTorch](https://pytorch.org/) as target framework.
```python
import numpy as np
from sklearn.ensemble import RandomForestClassifier
from hummingbird.ml import convert, load
# Create some random data for binary classification
num_classes = 2
X = np.random.rand(100000, 28)
y = np.random.randint(num_classes, size=100000)
# Create and train a model (scikit-learn RandomForestClassifier in this case)
skl_model = RandomForestClassifier(n_estimators=10, max_depth=10)
skl_model.fit(X, y)
# Use Hummingbird to convert the model to PyTorch
model = convert(skl_model, 'pytorch')
# Run predictions on CPU
model.predict(X)
# Run predictions on GPU
model.to('cuda')
model.predict(X)
# Save the model
model.save('hb_model')
# Load the model back
model = load('hb_model')
```
# Documentation
The API documentation is [here](https://microsoft.github.io/hummingbird/).
You can also read about Hummingbird in our blog post [here](https://www.microsoft.com/en-us/research/group/gray-systems-lab/articles/announcing-hummingbird-a-library-for-accelerating-inference-with-traditional-machine-learning-models/).
For more details on the vision and on the technical details related to Hummingbird, please check our papers:
* [Tensors: An abstraction for general data processing](http://www.vldb.org/pvldb/vol14/p1797-koutsoukos.pdf). Dimitrios Koutsoukos, Supun Nakandala, Konstantinos Karanasos, Karla Saur, Gustavo Alonso, Matteo Interlandi. PVLDB 2021.
* [A Tensor Compiler for Unified Machine Learning Prediction Serving](https://www.usenix.org/system/files/osdi20-nakandala.pdf). Supun Nakandala, Karla Saur, Gyeong-In Yu, Konstantinos Karanasos, Carlo Curino, Markus Weimer, Matteo Interlandi. OSDI 2020.
* [Compiling Classical ML Pipelines into Tensor Computations for One-size-fits-all Prediction Serving](http://learningsys.org/neurips19/assets/papers/27_CameraReadySubmission_Hummingbird%20(5).pdf). Supun Nakandala, Gyeong-In Yu, Markus Weimer, Matteo Interlandi. System for ML Workshop. NeurIPS 2019
# Contributing
We welcome contributions! Please see the guide on [Contributing](CONTRIBUTING.md).
Also, see our [roadmap](https://github.com/microsoft/hummingbird/wiki/Roadmap-for-Upcoming-Features-and-Support) of planned features.
# Community
Join our community! [![Gitter](https://badges.gitter.im/hummingbird-ml/community.svg)](https://gitter.im/hummingbird-ml/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
# Authors
* Supun Nakandala ([@scnakandala](https://github.com/scnakandala))
* Matteo Interlandi ([@interesaaat](https://github.com/interesaaat))
* Karla Saur ([@ksaur](https://github.com/ksaur))
# Special Thanks
* Masahiro Hiramori ([@mshr-h](https://github.com/mshr-h)) for the ongoing contributions
* Masahiro Masuda ([@masahi](https://github.com/masahi)) for the TVM and batching contributions
# License
[MIT License](LICENSE)
Raw data
{
"_id": null,
"home_page": "https://github.com/microsoft/hummingbird",
"name": "hummingbird-ml",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Microsoft Corporation",
"author_email": "hummingbird-dev@microsoft.com",
"download_url": "https://files.pythonhosted.org/packages/1b/4c/20e17e208cf7b01534f4479c03b3d1be1f778540cb467fe8d7f61811864e/hummingbird-ml-0.4.12.tar.gz",
"platform": null,
"description": "## Introduction\n*Hummingbird* is a library for compiling trained traditional ML models into tensor computations. *Hummingbird* allows users to seamlessly leverage neural network frameworks (such as [PyTorch](https://pytorch.org/)) to accelerate traditional ML models. Thanks to *Hummingbird*, users can benefit from: (1) all the current and future optimizations implemented in neural network frameworks; (2) native hardware acceleration; (3) having a unique platform to support for both traditional and neural network models; and have all of this (4) without having to re-engineer their models.\n\nCurrently, you can use *Hummingbird* to convert your trained traditional ML models into [PyTorch](https://pytorch.org/), [TorchScript](https://pytorch.org/docs/stable/jit.html), [ONNX](https://onnx.ai/), and [TVM](https://docs.tvm.ai/)). *Hummingbird* [supports](https://github.com/microsoft/hummingbird/wiki/Supported-Operators) a variety of ML models and featurizers. These models include\n[scikit-learn](https://scikit-learn.org/stable/) Decision Trees and Random Forest, and also [LightGBM](https://github.com/Microsoft/LightGBM) and [XGBoost](https://github.com/dmlc/xgboost) Classifiers/Regressors. Support for other neural network backends and models is on our [roadmap](https://github.com/microsoft/hummingbird/wiki/Roadmap-for-Upcoming-Features-and-Support).\n\nHummingbird also provides a convenient uniform \"inference\" API following the Sklearn API. This allows swapping Sklearn models with Hummingbird-generated ones without having to change the inference code. By converting the models to PyTorch and TorchScript it also becomes possible to serve them using [TorchServe](https://github.com/pytorch/serve).\n\n## How Hummingbird Works\n\nHummingbird works by reconfiguring algorithmic operators such that we can perform more regular computations which are amenable to vectorized and GPU execution. Each operator is slightly different, and we incorporate multiple strategies. This example explains one of Hummingbird's strategies for translating a decision tree into tensors involving GEMM (GEneric Matrix Multiplication), where we implement the traversal of the tree using matrix multiplications. (GEMM is one of the three tree conversion strategies we currently support.)\n\n\n<p align=\"center\">\n <img src=\"https://github.com/microsoft/hummingbird/raw/main/website/images/1-simple-reg-tree.png\" width=600 >\n <br>\n <em>Simple decision tree</em>\n</p>\n\n\nIn this example, the decision tree has four decision nodes (orange), and five leaf nodes (blue). The tree takes a feature vector with five elements as input. For example, assume that we want to calculate the output of this observation:\n\n\n<p align=\"center\">\n <img src=\"https://github.com/microsoft/hummingbird/raw/main/website/images/2-calc-output.png\" width=400 >\n</p>\n\n**Step 1:** Multiply the `input tensor` with tensor `A` (computed from the decision tree model above) that captures the relationship between input features and internal nodes. Then compare it with tensor `B` which is set to the value of each internal node (orange) to create the tensor `input path` that represents the path from input to node. In this case, the tree model has 4 conditions and the input vector is 5, therefore, the shape of tensor `A` is 5x4 and tensor B is 1x4.\n\n<p align=\"center\">\n<img src=\"https://github.com/microsoft/hummingbird/raw/main/website/images/3-matrix.png\" width=450 >\n</p>\n\n**Step 2:** The `input path` tensor will be multiplied with tensor `C` that captures whether the internal node is a parent of that internal node, and if so, whether it is in the left or right sub-tree (left = 1, right =-1, otherwise =0) and then check the equals with tensor `D` that captures the count of the left child of its parent in the path from a leaf node to the tree root to create the tensor output path that represents the path from node to output. In this case, this tree model has 5 outputs with 4 conditions, therefore, the shape of tensor `C` is 4x5 and tensor `D` is 1x5.\n\n<p align=\"center\">\n<img src=\"https://github.com/microsoft/hummingbird/raw/main/website/images/4-matrixnext.png\" width=450 >\n</p>\n\n**Step 3:** The `output path` will be multiplied with tensor `E` that captures the mapping between leaf nodes to infer the final prediction. In this case, tree model has 5 outputs, therefore, shape of tensor `E` is 5x1.\n\n<p align=\"center\">\n<img src=\"https://github.com/microsoft/hummingbird/raw/main/website/images/5-singletensor.png\" width=450>\n</p>\n\nAnd now Hummingbird has compiled a tree-based model using the GEMM strategy! For more details, please see [Figure 3](https://scnakandala.github.io/papers/TR_2020_Hummingbird.pdf) of our paper.\n\n\n_Thank you to [Chien Vu](https://www.linkedin.com/in/vumichien/) for contributing the graphics and descriptions in his [blog](https://towardsdatascience.com/standardizing-traditional-machine-learning-pipelines-to-tensor-computation-using-hummingbird-7a0b3168670) for this example!_\n\n## Installation\n\nHummingbird was tested on Python 3.9, 3.10 and 3.11 on Linux, Windows and MacOS machines. (TVM only works through Python3.10.) It is recommended to use a virtual environment (See: [python3 venv doc](https://docs.python.org/3/tutorial/venv.html) or [Using Python environments in VS Code](https://code.visualstudio.com/docs/python/environments).)\n\nHummingbird requires PyTorch >= 1.6.0. Please go [here](https://pytorch.org/) for instructions on how to install PyTorch based on your platform and hardware.\n\nOnce PyTorch is installed, you can get Hummingbird from pip with:\n```\npython -m pip install hummingbird-ml\n```\n\nIf you require the optional dependencies lightgbm and xgboost, you can use:\n```\npython -m pip install hummingbird-ml[extra]\n```\n\n\nSee also [Troubleshooting](TROUBLESHOOTING.md) for common problems.\n\n## Examples\n\nSee the [notebooks](notebooks) section for examples that demonstrate use and speedups.\n\nIn general, Hummingbird syntax is very intuitive and minimal. To run your traditional ML model on DNN frameworks, you only need to `import hummingbird.ml` and add `convert(model, 'dnn_framework')` to your code. Below is an example using a [scikit-learn random forest](https://scikit-learn.org/stable/modules/ensemble.html#forest) model and [PyTorch](https://pytorch.org/) as target framework.\n\n```python\nimport numpy as np\nfrom sklearn.ensemble import RandomForestClassifier\nfrom hummingbird.ml import convert, load\n\n# Create some random data for binary classification\nnum_classes = 2\nX = np.random.rand(100000, 28)\ny = np.random.randint(num_classes, size=100000)\n\n# Create and train a model (scikit-learn RandomForestClassifier in this case)\nskl_model = RandomForestClassifier(n_estimators=10, max_depth=10)\nskl_model.fit(X, y)\n\n# Use Hummingbird to convert the model to PyTorch\nmodel = convert(skl_model, 'pytorch')\n\n# Run predictions on CPU\nmodel.predict(X)\n\n# Run predictions on GPU\nmodel.to('cuda')\nmodel.predict(X)\n\n# Save the model\nmodel.save('hb_model')\n\n# Load the model back\nmodel = load('hb_model')\n```\n\n# Documentation\n\nThe API documentation is [here](https://microsoft.github.io/hummingbird/).\n\nYou can also read about Hummingbird in our blog post [here](https://www.microsoft.com/en-us/research/group/gray-systems-lab/articles/announcing-hummingbird-a-library-for-accelerating-inference-with-traditional-machine-learning-models/).\n\nFor more details on the vision and on the technical details related to Hummingbird, please check our papers:\n\n* [Tensors: An abstraction for general data processing](http://www.vldb.org/pvldb/vol14/p1797-koutsoukos.pdf). Dimitrios Koutsoukos, Supun Nakandala, Konstantinos Karanasos, Karla Saur, Gustavo Alonso, Matteo Interlandi. PVLDB 2021.\n\n* [A Tensor Compiler for Unified Machine Learning Prediction Serving](https://www.usenix.org/system/files/osdi20-nakandala.pdf). Supun Nakandala, Karla Saur, Gyeong-In Yu, Konstantinos Karanasos, Carlo Curino, Markus Weimer, Matteo Interlandi. OSDI 2020.\n* [Compiling Classical ML Pipelines into Tensor Computations for One-size-fits-all Prediction Serving](http://learningsys.org/neurips19/assets/papers/27_CameraReadySubmission_Hummingbird%20(5).pdf). Supun Nakandala, Gyeong-In Yu, Markus Weimer, Matteo Interlandi. System for ML Workshop. NeurIPS 2019\n\n# Contributing\n\nWe welcome contributions! Please see the guide on [Contributing](CONTRIBUTING.md).\n\nAlso, see our [roadmap](https://github.com/microsoft/hummingbird/wiki/Roadmap-for-Upcoming-Features-and-Support) of planned features.\n\n# Community\n\nJoin our community! [![Gitter](https://badges.gitter.im/hummingbird-ml/community.svg)](https://gitter.im/hummingbird-ml/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)\n\n# Authors\n\n* Supun Nakandala ([@scnakandala](https://github.com/scnakandala))\n* Matteo Interlandi ([@interesaaat](https://github.com/interesaaat))\n* Karla Saur ([@ksaur](https://github.com/ksaur))\n\n# Special Thanks\n\n* Masahiro Hiramori ([@mshr-h](https://github.com/mshr-h)) for the ongoing contributions\n* Masahiro Masuda ([@masahi](https://github.com/masahi)) for the TVM and batching contributions\n\n# License\n[MIT License](LICENSE)\n\n\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Convert trained traditional machine learning models into tensor computations",
"version": "0.4.12",
"project_urls": {
"Homepage": "https://github.com/microsoft/hummingbird"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "87b5e1ff4c851fbda461e04b47b9f8136901d91755dd9125cfe3643a1641b438",
"md5": "8cbf53f9bc1d30eb22d0cd2f4f79f3d5",
"sha256": "0057e68d2bc4792ea1c6a058b67a1cc94b99bcd044280344c2a4768757beca63"
},
"downloads": -1,
"filename": "hummingbird_ml-0.4.12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8cbf53f9bc1d30eb22d0cd2f4f79f3d5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.8",
"size": 166453,
"upload_time": "2024-10-25T17:04:56",
"upload_time_iso_8601": "2024-10-25T17:04:56.339714Z",
"url": "https://files.pythonhosted.org/packages/87/b5/e1ff4c851fbda461e04b47b9f8136901d91755dd9125cfe3643a1641b438/hummingbird_ml-0.4.12-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1b4c20e17e208cf7b01534f4479c03b3d1be1f778540cb467fe8d7f61811864e",
"md5": "5254fc9f7470f61ef3e0896df53bbaae",
"sha256": "0e3486ec5867631e3e86d092780ca7d4164999e7ea85cf7b6985b3aff21f193b"
},
"downloads": -1,
"filename": "hummingbird-ml-0.4.12.tar.gz",
"has_sig": false,
"md5_digest": "5254fc9f7470f61ef3e0896df53bbaae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 553400,
"upload_time": "2024-10-25T17:04:59",
"upload_time_iso_8601": "2024-10-25T17:04:59.108295Z",
"url": "https://files.pythonhosted.org/packages/1b/4c/20e17e208cf7b01534f4479c03b3d1be1f778540cb467fe8d7f61811864e/hummingbird-ml-0.4.12.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-25 17:04:59",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "microsoft",
"github_project": "hummingbird",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "hummingbird-ml"
}