paper-with-me

Papers

TreeLUT: An Efficient Alternative to Deep Neural Networks for Inference Acceleration Using Gradient Boosted Decision Trees

2025-01-02 · Alireza Khataei, Kia Bazargan

Accelerating machine learning inference has been an active research area in recent years. In this context, field-programmable gate arrays (FPGAs) have demonstrated compelling performance by providing massive parallelism in deep neural networks (DNNs). Neural networks (NNs) are computationally intensive during inference, as they require massive amounts of multiplication and addition, which makes their implementations costly. Numerous studies have recently addressed this challenge to some extent using a combination of sparsity induction, quantization, and transformation of neurons or sub-networks into lookup tables (LUTs) on FPGAs. Gradient boosted decision trees (GBDTs) are a high-accuracy alternative to DNNs in a wide range of regression and classification tasks, particularly for tabular datasets. The basic building block of GBDTs is a decision tree, which resembles the structure of binary decision diagrams. FPGA design flows are heavily optimized to implement such a structure efficiently. In addition to decision trees, GBDTs perform simple operations during inference, including comparison and addition. We present TreeLUT as an open-source tool for implementing GBDTs using an efficient quantization scheme, hardware architecture, and pipelining strategy. It primarily utilizes LUTs with no BRAMs or DSPs on FPGAs, resulting in high efficiency. We show the effectiveness of TreeLUT using multiple classification datasets, commonly used to evaluate ultra-low area and latency architectures. Using these benchmarks, we compare our implementation results with existing DNN and GBDT methods, such as DWN, PolyLUT-Add, NeuraLUT, LogicNets, FINN, hls4ml, and others. Our results show that TreeLUT significantly improves hardware utilization, latency, and throughput at competitive accuracy compared to previous works.

📄 PDF Abstract BibTeX arXiv:2501.01511

Code (1)

kiabuzz/treelut 공식 구현

Tasks

Quantization

Similar Papers 제목 키워드 기반

srlearn: A Python Library for Gradient-Boosted Statistical Relational Models

2019-12-17 · Alexander L. Hayes

We present srlearn, a Python library for boosted statistical relational models. We adapt the scikit-learn interface to this setting and provide examples for how this can be used to express learning and inference problems…

Enhancing Transformers with Gradient Boosted Decision Trees for NLI Fine-Tuning

2021-05-08 · Findings (ACL) 2021 8 · Benjamin Minixhofer, Milan Gritta, Ignacio Iacobacci

Transfer learning has become the dominant paradigm for many natural language processing tasks. In addition to models being pretrained on large datasets, they can be further trained on intermediate (supervised) tasks that…

Language ModellingNatural Language InferenceTransfer Learning

NRGBoost: Energy-Based Generative Boosted Trees

2024-10-04 · João Bravo

Despite the rise to dominance of deep learning in unstructured data domains, tree-based methods such as Random Forests (RF) and Gradient Boosted Decision Trees (GBDT) are still the workhorses for handling discriminative …

Gradient Boosted Normalizing Flows

2020-02-27 · NeurIPS 2020 12 · Robert Giaquinto, Arindam Banerjee

By chaining a sequence of differentiable invertible transformations, normalizing flows (NF) provide an expressive method of posterior approximation, exact density evaluation, and sampling. The trend in normalizing flow l…

Density EstimationVariational Inference

Tree Space Prototypes: Another Look at Making Tree Ensembles Interpretable

2016-11-22 · Sarah Tan, Matvey Soloviev, Giles Hooker, Martin T. Wells

Ensembles of decision trees perform well on many problems, but are not interpretable. In contrast to existing approaches in interpretability that focus on explaining relationships between features and predictions, we pro…

Prototype Selection