LGMar 15, 2017

Deep Embedding Forest: Forest-based Serving with Deep Embedding Features

arXiv:1703.05291v153 citations
Originality Incremental advance
AI Analysis

This addresses the serving bottleneck for commercial applications like sponsored search engines, offering a practical solution without requiring specialized hardware, though it is incremental as it builds on existing DNN and forest models.

The paper tackles the problem of high serving time in deep neural networks by proposing Deep Embedding Forest, which combines embedding layers with forest-based models to achieve similar or slightly better performance than DNNs while reducing serving time to a fraction on conventional hardware, as validated on datasets up to 1 billion samples.

Deep Neural Networks (DNN) have demonstrated superior ability to extract high level embedding vectors from low level features. Despite the success, the serving time is still the bottleneck due to expensive run-time computation of multiple layers of dense matrices. GPGPU, FPGA, or ASIC-based serving systems require additional hardware that are not in the mainstream design of most commercial applications. In contrast, tree or forest-based models are widely adopted because of low serving cost, but heavily depend on carefully engineered features. This work proposes a Deep Embedding Forest model that benefits from the best of both worlds. The model consists of a number of embedding layers and a forest/tree layer. The former maps high dimensional (hundreds of thousands to millions) and heterogeneous low-level features to the lower dimensional (thousands) vectors, and the latter ensures fast serving. Built on top of a representative DNN model called Deep Crossing, and two forest/tree-based models including XGBoost and LightGBM, a two-step Deep Embedding Forest algorithm is demonstrated to achieve on-par or slightly better performance as compared with the DNN counterpart, with only a fraction of serving time on conventional hardware. After comparing with a joint optimization algorithm called partial fuzzification, also proposed in this paper, it is concluded that the two-step Deep Embedding Forest has achieved near optimal performance. Experiments based on large scale data sets (up to 1 billion samples) from a major sponsored search engine proves the efficacy of the proposed model.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes