Pith. sign in

REVIEW 3 major objections 6 minor 89 references

Revisiting Feature Interactions from the Perspective of Quadratic Neural Networks for Click-through Rate Prediction

T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read This paper claims that the Hadamard Product's power in click-through rate prediction comes from the quadratic feature space it induces, and uses that insight to build QNN-alpha, a multi-head Khatri-Rao product neuron with self-ensemble…

desk verdict A solid empirical study of QNN formats for CTR whose central mechanistic claim about the Khatri–Rao product collapses on inspection; the empirical results may still hold, but the paper overstates what its KRP actually does. read the letter →

arxiv 2505.17999 v2 pith:QAJOBZND submitted 2025-05-23 cs.IR cs.LG

classification cs.IRcs.LG
keywords QuadraticNeuralNetworksClick-throughRatePredictionFeatureInteractionsHadamardProductKhatri-RaoSelf-EnsembleLossRecommenderSystems
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper argues that the Hadamard Product, the standard element-wise multiplication used to combine feature embeddings in click-through rate (CTR) models, works for a deeper reason than usually assumed: it turns a linear layer into a quadratic neuron, expanding the feature space and giving smooth nonlinear decision boundaries without any activation function. On that diagnosis the paper builds a new neuron format, QNN-alpha, whose core is a Multi-Head Khatri-Rao Product that generalizes the Hadamard Product, plus a Self-Ensemble Loss that averages two dropout-perturbed forward passes at training time. The paper reports that QNN-alpha outperforms existing models on all six public datasets tested while keeping inference latency low enough for production use. If correct, the result gives CTR practitioners a drop-in interaction block that is both more accurate and no slower than components already deployed.

What carries the argument

The central object is the quadratic neuron, a unit whose output contains linearly independent quadratic polynomials of its inputs, not just a linear map followed by an activation. It carries the argument because it unifies the Hadamard Product, MLP, and existing CTR interaction layers into one design space. The improved machinery is the Multi-Head Khatri-Rao Product, a column-wise Kronecker product with sum pooling that reduces to the Hadamard Product at rank $M=1$, scales capacity through the rank $M$, and cuts parameter and compute cost by a factor of $H$ through head splitting. The other load-bearing piece is the Self-Ensemble Loss, which runs two dropout-perturbed forward passes and adds a consistency term between their predictions, giving ensemble regularization without extra sub-networks.

What would settle it

Train QNN-alpha and the strongest baseline ten times with different random seeds on Tenrec and Criteo; if the reported gains of 0.04 and 0.08 AUC points fall within the run-to-run spread, the central state-of-the-art claim fails. Independently, replace the Khatri-Rao product with a linear layer of equal parameter count while keeping the residual and mid-activation structure; if accuracy matches QNN-alpha, the expressiveness mechanism is falsified.

Watch

Extended reading notes

Core claim

The central claim is that the Hadamard Product's effectiveness is not a property of element-wise multiplication itself but of the quadratic-neural-network structure it induces: each layer generates linearly independent second-order polynomials, which expands the feature space and supplies smooth nonlinear approximation without activation functions. From experiments on 25 QNN neuron formats, the paper concludes that placing ReLU after the whole quadratic neuron (post-activation) is unnecessary and often hurts, while placing it inside the layer before the product (mid-activation) helps; the strongest basic format is T19, written $\Phi(X)=X\odot \mathrm{ReLU}(W_a X)+X$. QNN-$\alpha$ improves T19 by replacing the Hadamard Product with a sum-pooled Multi-Head Khatri-Rao Product, $\Psi(X_h)=X_h\bullet \mathrm{ReLU}(W^h_a X)+X_h$, and by adding a Self-Ensemble Loss that enforces consistency between two stochastic forward passes of the same network. The paper claims this single network achieves new state-of-the-art results on six public datasets and that it can replace the interaction block or MLP of existing models with consistent gains.

Load-bearing premise

The whole result depends on a new feature-combination operation being genuinely more expressive than the old element-wise multiplication, not just bigger or better tuned, and on the small accuracy gains on the largest datasets surviving repeated runs from different random seeds.

Editorial extensions

If this is right

  • Existing Hadamard-product layers can be understood as quadratic neurons, which gives a principled explanation for their success and a design vocabulary (mid-activation, feature-space expansion) for improving them.
  • Removing post-activation and using mid-activation helps or matches in most of the 25 neuron formats compared, so QNN-style interaction layers do not need a nonlinearity on the output.
  • The Multi-Head Khatri-Rao Product is a drop-in replacement for the Hadamard Product that scales capacity through $M$ and reduces cost through $H$, with $M=1$ degenerating to the original operation.
  • Self-Ensemble Loss improves accuracy using only two forward passes during training and no extra sub-networks, so the inference cost stays that of a single network.
  • QNN-alpha can replace the MLP or interaction block of models such as xDeepFM, DeepFM, and DCNv2 and improves them, so the architecture can be adopted incrementally.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The paper's smooth-versus-sharp boundary argument is qualitative; a direct test would measure decision-boundary curvature or local Lipschitz constants for HP-based versus activation-based layers on toy data to check whether smoothness is the actual mechanism.
  • If feature-space expansion is the true source of the gains, the same Multi-Head Khatri-Rao substitution should transfer to product-based interaction models outside CTR, such as matching or ranking towers, which the paper does not test.
  • Because Self-Ensemble Loss is a consistency regularizer over dropout stochasticity, a cheaper variant using two dropout masks inside one forward pass rather than two full forward passes is a natural untested simplification.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. The paper proposes QNN-alpha, a CTR prediction architecture built on a quadratic-neural-network view of feature interactions. It revisits Hadamard-product interaction layers (e.g., DCNv2, ECN-like T9) and derives equivalence formulations showing that these layers expand the feature space through quadratic polynomials. After evaluating 25 QNN neuron formats on Criteo, the authors conclude that post-activation is unnecessary for QNN while mid-activation is beneficial, and they identify the T19 format as a strong performer. They then introduce two enhancements: a Multi-Head Khatri-Rao Product (MH-KRP) that is claimed to be a more expressive alternative to the Hadamard product, and a Self-Ensemble Loss (SE Loss) that ensembles two dropout views of the same network during training. Experiments on six public datasets report state-of-the-art AUC/Logloss, plus ablation, scalability, compatibility, and latency studies.

Significance. If the empirical results hold, QNN-alpha is a strong and deployable CTR architecture, and the paper provides a useful taxonomic perspective that connects existing CTR interaction layers to the QNN literature. The paper ships code, running logs, and hyperparameter configurations; the theoretical rewrites in Eqs. (2) and (4) are simple and largely correct; and the 25-format investigation plus the compatibility and latency analyses are valuable. However, the central mechanistic claim about MH-KRP is compromised by the sum-pooling collapse identified below, and the statistical evidence on two of the six datasets is weaker than the paper's own significance threshold. The SE Loss is also presented as a new contribution but is very close to existing consistency/self-distillation losses. These issues do not necessarily invalidate the reported results, but they must be addressed before the SOTA and mechanism claims can be accepted.

major comments (3)
  1. [§3.1–3.2, Eqs. (8)–(10), Fig. 7] The sum-pooled 'Khatri-Rao Product' is not a rank-M generalization of the Hadamard product. In Eq. (8), C_j = sum_p A_j B_{p,j} = A_j (sum_p B_{p,j}), so the M dimension is summed away before the elementwise interaction with A_j. Consequently, Eq. (10) is algebraically Psi(X_h) = X_h ⊙ (sum_{p=1}^M ReLU((W_h)_p X_h)) + X_h, i.e., a Hadamard product with a wider ReLU projection, not a columnwise Kronecker rank expansion. The claim in Eq. (9) that KRP expands the feature space to D^2 interaction items is therefore not supported for a single layer, and the phrase 'rank expansion' is misleading. The comparison M=1 vs M>1 in Fig. 7 varies the parameter count of W roughly M-fold without a matched-capacity HP baseline, so it does not isolate a KRP structural advantage. The 'w/o KRP' ablation in Table 4 replaces KRP with a linear transformation, which also fails to distinguish KRP from HP. Please either reframe the contribution as a wider nonlinear projection with capacity-matched baselines, or modify the operation so that the M dimension participates in the interaction before pooling.
  2. [§4.2, Table 3] The paper reports a two-tailed T-test (star: p < 1e-3) but gives no standard deviations, no number of seeds, and no statement of whether the test is over samples or over repeated runs. If the test is over test samples, it does not address sensitivity to initialization. On Tenrec and Criteo, the AUC gains over the best baseline are +0.04 and +0.08 points (0.0004 and 0.0008 absolute), and the Logloss gains are 0.0006 on both datasets, which is below the 0.001 (0.1%) threshold that the paper itself cites as practically significant. The 'new state-of-the-art' claim on these two datasets is therefore not established without per-seed results. Please report mean plus/minus standard deviation over multiple seeds and exact p-values, and clarify the test procedure.
  3. [§3.3, Eq. (11)] The Self-Ensemble Loss is presented as a new dynamic ensemble method, but as written it is the sum of two cross-entropy terms between a shared soft target y_pred_tilde = stopgrad((y_pred1 + y_pred2)/2) and the two dropout views: L_SE = CE(y_pred_tilde, y_pred1) + CE(y_pred_tilde, y_pred2). This is very close to R-Drop's consistency regularization and to the authors' own Tri-BCE, which are cited but not formally differentiated. Since SE Loss is one of the three named contributions, please provide an explicit comparison (e.g., show how the loss decomposes relative to R-Drop's KL terms and hard-label CE) or temper the novelty claim accordingly.
minor comments (6)
  1. [Table 3] The 'Abs.Imp' row is signed for Logloss (negative means improvement) but unsigned for AUC; this is confusing and should be clarified with a sign convention or by using absolute differences with a direction indicator.
  2. [Eq. (8)] The pooling operation is written as 'sum' without specifying the summation dimension; please define it explicitly and avoid calling the result a Khatri-Rao product without qualification, since the standard KRP's columnwise Kronecker structure is destroyed by the summation.
  3. [§3.3] The text says additional forward passes 'exponentially increase' training cost; the cost increases linearly with the number of forward passes, not exponentially.
  4. [Table 1] The 'Time x Epochs' column (e.g., '2min x 11') is ambiguous; please specify whether this is total wall-clock time, per-epoch time, or the product of per-epoch time and epoch count.
  5. [Table 4, footnote 12] The w/o Res entries show backslashes with only a footnote saying the network fails to train; this is easy to miss and should be stated in the table caption or in the main text.
  6. [References] Reference [42] has a stray period and duplicate '(2023)'; the baseline list in §4.1.3 also has inconsistent year formatting (e.g., xDeepFM appears as '(2018)' twice).

Circularity Check

0 steps flagged · score 2.0 of 10

No load-bearing circularity: the core derivation is self-contained, with only minor non-load-bearing self-citations; the sum-pooled-KRP concern is an evidence gap, not circularity.

full rationale

The claimed derivation chain does not reduce to its inputs. Section 2.1's QNN analysis is an algebraic reinterpretation of DCNv2 (Eq. 1-2) and ECN-like T9 (Eq. 4-5), showing quadratic polynomial terms; it does not assume HP's effectiveness. The 25-format screen (Table 1) is an empirical search, and QNN-alpha's later benchmark (Table 3) is an evaluation, not a fitted parameter relabeled as a prediction. Equations (8)-(10) explicitly define the multi-head KRP neuron; the assertion that KRP is 'more expressive' than HP is an empirical hypothesis tested by M sweeps (Figure 7) and ablations (Table 4), not a conclusion derived from the definition. It is true that sum-pooling algebraically collapses the Khatri-Rao rank so that Ψ(X_h)=X_h⊙Σ_p ReLU((W_h)_pX_h)+X_h, which weakens the paper's mechanistic claim; however, this is an evidentiary/interpretation defect, not a circular reduction. The Self-Ensemble Loss (Eq. 11) uses the network's own frozen outputs as soft targets; this is a self-distillation training regularizer evaluated against other losses (Figure 6), so it is not circular evidence for model quality. Self-citations, principally ECN/Tri-BCE [32], are used for context and inspiration but are not load-bearing: T19's selection and SE Loss's effectiveness are demonstrated in this paper's own experiments, and the central SOTA claim is benchmarked against external baselines. Accordingly the circularity score is at the floor: minor self-citation overlap without any load-bearing reduction.

Assumptions & free parameters 6 free parameters · 5 assumptions · 0 invented entities

The central empirical claim depends on tuned hyperparameters (embedding size, M, H, L, dropout, learning rate) and on the benchmark assumption that 0.1% metric shifts matter. No new physical entities are introduced; the KRP and SE Loss are architectural and training constructs. The core algebraic rewrites are standard math, so the main listed axioms concern design choices and empirical conventions.

free parameters (6)
  • Embedding dimension d = 16 for most datasets, 128 for KKBox
    Follows prior benchmarks [79,81]; controls input capacity.
  • Khatri-Rao expansion size M = Tuned per dataset; larger M improves Tenrec and Frappe in Figure 7
    Controls model capacity in Equation (9).
  • Number of heads H = H=4 for ML-1M and iPinYou, H=2 for KKBox (Table 6)
    Multi-head split in Equation (10); affects both performance and latency.
  • Network depth L = Optimal L=2 for Tenrec, L=4 for Criteo, L=1 for ML-1M (Figure 4)
    Depth of KRP interaction layers.
  • Dropout rate = 0.1 recommended
    Stochastic source for SE Loss; discussed in Section 4.3.4.
  • Mid-activation choice = ReLU
    Compared in Figure 5; no single activation wins across all datasets, yet ReLU is used in QNN-alpha.
assumptions (5)
  • standard math Quadratic neural networks are universal approximators and provide smooth nonlinear approximation capability.
    Invoked in Sections 1 and 2.1 via [13,74] to justify QNN's approximation power.
  • domain assumption ReLU's non-smoothness at zero explains sharp MLP decision boundaries.
    Used in Section 2.1.2 to interpret decision-boundary plots; not proven for this model class.
  • ad hoc to paper Sum-pooled Khatri-Rao product preserves interaction information and is a generalized Hadamard product.
    Equations (8)-(10) define the architecture; no theorem guarantees that sum pooling keeps all useful interaction structure.
  • domain assumption Two dropout forward passes form a beneficial ensemble.
    Basis of SE Loss (Equation 11), justified empirically with reference to R-Drop [69] and Tri-BCE [32].
  • domain assumption A 0.1% improvement in AUC or logloss is statistically and practically significant in CTR benchmarks.
    Stated in Table 1 and Table 3 captions and used to declare SOTA; no variance analysis is provided to support it.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Revisiting Feature Interactions from the Perspective of Quadratic Neural Networks for Click-through Rate Prediction." pith.science (2026). https://pith.science/paper/QAJOBZND

@misc{pith2026250517999,
  author       = {Pith},
  title        = {Pith review of: Revisiting Feature Interactions from the Perspective of Quadratic Neural Networks for Click-through Rate Prediction},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/QAJOBZND}},
  note         = {Machine review of arXiv:2505.17999}
}
read the original abstract

Hadamard Product (HP) has long been a cornerstone in click-through rate (CTR) prediction tasks due to its simplicity, effectiveness, and ability to capture feature interactions without additional parameters. However, the underlying reasons for its effectiveness remain unclear. In this paper, we revisit HP from the perspective of Quadratic Neural Networks (QNN), which leverage quadratic interaction terms to model complex feature relationships. We further reveal QNN's ability to expand the feature space and provide smooth nonlinear approximations without relying on activation functions. Meanwhile, we find that traditional post-activation does not further improve the performance of the QNN. Instead, mid-activation is a more suitable alternative. Through theoretical analysis and empirical evaluation of 25 QNN neuron formats, we identify a good-performing variant and make further enhancements on it. Specifically, we propose the Multi-Head Khatri-Rao Product as a superior alternative to HP and a Self-Ensemble Loss with dynamic ensemble capability within the same network to enhance computational efficiency and performance. Ultimately, we propose a novel neuron format, QNN-alpha, which is tailored for CTR prediction tasks. Experimental results show that QNN-alpha achieves new state-of-the-art performance on six public datasets while maintaining low inference latency, good scalability, and excellent compatibility. The code, running logs, and detailed hyperparameter configurations are available at: https://github.com/salmon1802/QNN.

Figures

Figures reproduced from arXiv: 2505.17999 by the authors.

Figure 1
Figure 1. Comparison of MLP and QNN. question worthy of further exploration: Are Activation Functions Necessary for HP-based CTR Prediction? To answer this question, we empirically analyze 25 different neuron formats of QNN, as discussed in Section 2.2 and 2.3, claim the connections between existing CTR models and QNN, and iden￾tify the T19 variant as a strong performer. Moreover, we find that, in most cases, introducing post… view at source ↗
Figure 2
Figure 2. Comparison of decision boundaries for 2D moon (line 1) and circle (line 2) datasets in different neuron formats. [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Architecture of the QNN-𝛼. future research. We recommend readers to refer to [3, 8, 10, 12, 13] for a broader and deeper understanding of QNN. 3 A Better QNN Design for CTR prediction Based on the conclusions in Section 2, we believe that QNN holds significant potential for improving CTR model performance but remains underexplored. Therefore, in this section, we aim to further understand the underlying mechanisms of… view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Performance of different 𝐿 in QNN-𝛼. ReLU Mish GELU ReLU6 Sigmoid 89.0 89.5 90.0 90.5 91.0 91.5 AUC (%) 90.87 90.88 90.52 90.45 89.35 AUC 0.295 0.300 0.305 0.310 0.315 Logloss Logloss (a) ML-1M ReLU Mish GELU ReLU6 Sigmoid 98.0 98.2 98.4 98.6 98.8 99.0 AUC (%) 98.62 98…
Figure 7
Figure 7. Figure 7: Performance of different 𝑀 in QNN-𝛼 [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

89 extracted references · 55 canonical work pages

  1. [1]

    Linas Baltrunas, Karen Church, Alexandros Karatzoglou, and Nuria Oliver. 2015. Frappe: Understanding the usage and perception of mobile app recommendations in-the-wild. arXiv preprint arXiv:1505.03014 (2015)

  2. [2]

    Bobbi Jo Broxson. 2006. The Kronecker Product. (2006)

  3. [3]

    Jie Bu and Anuj Karpatne. 2021. Quadratic residual networks: A new class of neural networks for solving forward and inverse problems in physics involving pdes. In Proceedings of the 2021 SIAM International Conference on Data Mining (SDM). SIAM, 675–683

  4. [4]

    Jianxin Chang, Chenbin Zhang, Yiqun Hui, Dewei Leng, Yanan Niu, Yang Song, and Kun Gai. 2023. PEPNet: Parameter and Embedding Personalized Network for Infusing with Personalized Prior Information. In Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 3795–3804

  5. [5]

    Bo Chen, Yichao Wang, Zhirong Liu, Ruiming Tang, Wei Guo, Hongkun Zheng, Weiwei Yao, Muyu Zhang, and Xiuqiang He. 2021. Enhancing explicit and implicit feature interactions via information sharing for parallel deep CTR models. In Proceedings of the 30th ACM International Conference on Information & Knowledge Management. 3757–3766

  6. [6]

    Heng-Tze Cheng, Levent Koc, Jeremiah Harmsen, Tal Shaked, Tushar Chandra, Hrishi Aradhye, Glen Anderson, Greg Corrado, Wei Chai, Mustafa Ispir, et al

  7. [7]

    Weiyu Cheng, Yanyan Shen, and Linpeng Huang. 2020. Adaptive factorization network: Learning adaptive-order feature interactions. InProceedings of the AAAI Conference on Artificial Intelligence, Vol. 34. 3609–3616

  8. [8]

    Grigorios G Chrysos, Stylianos Moschoglou, Giorgos Bouritsas, Jiankang Deng, Yannis Panagakis, and Stefanos Zafeiriou. 2021. Deep polynomial neural networks. IEEE transactions on pattern analysis and machine intelligence 44, 8 (2021), 4021– 4034

Show all 89 references
  1. [9]

    Paul Covington, Jay Adams, and Emre Sargin. 2016. Deep neural networks for YouTube recommendations. In Proceedings of the 10th ACM Conference on Recommender Systems. 191–198

  2. [10]

    Nicholas DeClaris and Mu-chun Su. 1991. A novel class of neural networks with quadratic junctions. In Conference Proceedings 1991 IEEE International Conference on Systems, Man, and Cybernetics . IEEE, 1557–1562

  3. [11]

    Thomas G Dietterich et al. 2002. Ensemble learning. The handbook of brain theory and neural networks 2, 1 (2002), 110–125

  4. [12]

    Fenglei Fan, Wenxiang Cong, and Ge Wang. 2018. A new type of neurons for machine learning. International journal for numerical methods in biomedical engineering 34, 2 (2018), e2920

  5. [13]

    Fenglei Fan, Jinjun Xiong, and Ge Wang. 2020. Universal Approximation with Quadratic Deep Networks. Neural Networks 124 (2020), 383–392

  6. [14]

    Junchen Fu, Xuri Ge, Xin Xin, Haitao Yu, Yue Feng, Alexandros Karatzoglou, Ioannis Arapakis, and Joemon M. Jose. 2025. The 1st EReL@MIR Workshop on Efficient Representation Learning for Multimodal Information Retrieval. arXiv:2504.14788 [cs.IR] https://arxiv.org/abs/2504.14788

  7. [15]

    Zichuan Fu, Xiangyang Li, Chuhan Wu, Yichao Wang, Kuicai Dong, Xiangyu Zhao, Mengchen Zhao, Huifeng Guo, and Ruiming Tang. 2023. A unified frame- work for multi-domain ctr prediction via large language models. ACM Transac- tions on Information Systems (2023)

  8. [16]

    Huifeng Guo, Ruiming Tang, Yunming Ye, Zhenguo Li, and Xiuqiang He. 2017. DeepFM: A Factorization-Machine Based Neural Network for CTR Prediction. In Proceedings of the 26th International Joint Conference on Artificial Intelligence (Melbourne, Australia) (IJCAI’17). AAAI Press...

  9. [17]

    Qiushan Guo, Xinjiang Wang, Yichao Wu, Zhipeng Yu, Ding Liang, Xiaolin Hu, and Ping Luo. 2020. Online Knowledge Distillation via Collaborative Learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 11020–11029

  10. [18]

    Wei Guo, Can Zhang, Zhicheng He, Jiarui Qin, Huifeng Guo, Bo Chen, Ruiming Tang, Xiuqiang He, and Rui Zhang. 2022. Miss: Multi-interest self-supervised learning framework for click-through rate prediction. In 2022 IEEE 38th Interna- tional Conference on Data Engineering (ICDE)...

  11. [19]

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. 2016. Deep residual learning for image recognition. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition . 770–778

  12. [20]

    Xiangnan He and Tat-Seng Chua. 2017. Neural factorization machines for sparse predictive analytics. InProceedings of the 40th International ACM SIGIR Conference on Research and Development in Information Retrieval . 355–364

  13. [21]

    Xiangnan He, Kuan Deng, Xiang Wang, Yan Li, Yongdong Zhang, and Meng Wang. 2020. Lightgcn: Simplifying and powering graph convolution network for recommendation. In Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval ...

  14. [22]

    Xiangnan He, Lizi Liao, Hanwang Zhang, Liqiang Nie, Xia Hu, and Tat-Seng Chua. 2017. Neural collaborative filtering. In Proceedings of the 26th International Conference on World Wide Web. 173–182

  15. [23]

    Kurt Hornik, Maxwell Stinchcombe, and Halbert White. 1989. Multilayer feed- forward networks are universal approximators. Neural Networks 2, 5 (1989), 359–366

  16. [24]

    Huawei. 2021. An open-source CTR prediction library. https://fuxictr.github.io

  17. [25]

    Pavel Izmailov, Dmitrii Podoprikhin, Timur Garipov, Dmitry Vetrov, and An- drew Gordon Wilson. 2018. Averaging Weights Leads to Wider Optima and Better Generalization. arXiv preprint arXiv:1803.05407 (2018)

  18. [26]

    Yiyang Jiang, Fan Yang, Hengliang Zhu, Dian Zhou, and Xuan Zeng. 2020. Non- linear CNN: improving CNNs with quadratic convolutions. Neural Computing and Applications 32 (2020), 8507–8516

  19. [27]

    Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. 2020. Scaling Laws for Neural Language Models.arXiv preprint arXiv:2001.08361 (2020)

  20. [28]

    Diederik P Kingma and Jimmy Ba. 2014. Adam: A method for stochastic opti- mization. arXiv preprint arXiv:1412.6980 (2014)

  21. [29]

    Honghao Li, Hanwei Li, Jing Zhang, Yi Zhang, Ziniu Yu, Lei Sang, and Yiwen Zhang. 2025. Quadratic Interest Network for Multimodal Click-Through Rate Prediction. arXiv:2504.17699 [cs.IR] https://arxiv.org/abs/2504.17699

  22. [30]

    Honghao Li, Lei Sang, Yi Zhang, Xuyun Zhang, and Yiwen Zhang. 2023. CETN: Contrast-enhanced Through Network for CTR Prediction. arXiv preprint arXiv:2312.09715 (2023)

  23. [31]

    Honghao Li, Lei Sang, Yi Zhang, and Yiwen Zhang. 2024. SimCEN: Simple Contrast-enhanced Network for CTR Prediction. In Proceedings of the 32th ACM International Conference on Multimedia

  24. [32]

    Honghao Li, Yiwen Zhang, Yi Zhang, Hanwei Li, Lei Sang, and Jieming Zhu

  25. [33]

    Honghao Li, Yiwen Zhang, Yi Zhang, and Lei Sang. 2024. Ensemble Learning via Knowledge Transfer for CTR Prediction. arXiv preprint arXiv:2411.16122 (2024)

  26. [34]

    Zekun Li, Zeyu Cui, Shu Wu, Xiaoyu Zhang, and Liang Wang. 2019. FiGNN: Modeling feature interactions via graph neural networks for CTR prediction. In Proceedings of the 28th ACM International Conference on Information and Knowledge Management. 539–548

  27. [35]

    Jianxun Lian, Xiaohuan Zhou, Fuzheng Zhang, Zhongxia Chen, Xing Xie, and Guangzhong Sun. 2018. xDeepFM: Combining explicit and implicit feature interactions for recommender systems. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mi...

  28. [36]

    Zhutian Lin, Junwei Pan, Shangyu Zhang, Ximei Wang, Xi Xiao, Shudong Huang, Lei Xiao, and Jie Jiang. 2024. Understanding the Ranking Loss for Recommenda- tion with Sparse User Feedback. arXiv preprint arXiv:2403.14144 (2024)

  29. [37]

    Bin Liu, Ruiming Tang, Yingzhi Chen, Jinkai Yu, Huifeng Guo, and Yuzhou Zhang

  30. [38]

    Shuangzhe Liu, Gotz Trenkler, et al. 2008. Hadamard, Khatri-Rao, Kronecker and other matrix products. International Journal of Information and Systems Sciences 4, 1 (2008), 160–177

  31. [39]

    Xu Ma, Xiyang Dai, Yue Bai, Yizhou Wang, and Yun Fu. 2024. Rewrite the Stars. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 5694–5703

  32. [40]

    Andrew L Maas, Awni Y Hannun, Andrew Y Ng, et al. 2013. Rectifier Nonlinear- ities Improve Neural Network Acoustic Models. In Proc. icml, Vol. 30. Atlanta, GA, 3

  33. [41]

    Siddarth Malreddy, Matthew Lawhon, Usha Amrutha Nookala, Aditya Mantha, and Dhruvil Deven Badani. 2024. Improving feature interactions at Pinterest under industry constraints. arXiv preprint arXiv:2412.01985 (2024)

  34. [42]

    Kelong Mao, Jieming Zhu, Liangcai Su, Guohao Cai, Yuru Li, and Zhenhua Dong

  35. [43]

    Diganta Misra. 2019. Mish: A Self-regularized Non-monotonic Activation Func- tion. arXiv preprint arXiv:1908.08681 (2019)

  36. [44]

    Rafael Müller, Simon Kornblith, and Geoffrey E Hinton. 2019. When Does Label Smoothing Help? Advances in neural information processing systems 32 (2019)

  37. [45]

    Junwei Pan, Jian Xu, Alfonso Lobos Ruiz, Wenliang Zhao, Shengjun Pan, Yu Sun, and Quan Lu. 2018. Field-weighted factorization machines for click-through rate prediction in display advertising. In Proceedings of the 2018 World Wide Web Conference. 1349–1357

  38. [46]

    Junwei Pan, Wei Xue, Ximei Wang, Haibin Yu, Xun Liu, Shijie Quan, Xueming Qiu, Dapeng Liu, Lei Xiao, and Jie Jiang. 2024. Ads Recommendation in A Collapsed and Entangled World. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 5566–5577

  39. [47]

    Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. 2019. PyTorch: An imperative style, high-performance deep learning library. Advances in Neural Information Processing System...

  40. [48]

    Fabian Pedregosa, Gaël Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al . 2011. Scikit-learn: Machine Learning in Python. the Journal of machine Learning research 12 (2011), ...

  41. [49]

    Zexuan Qiu, Jieming Zhu, Yankai Chen, Guohao Cai, Weiwen Liu, Zhenhua Dong, and Irwin King. 2024. EASE: Learning Lightweight Semantic Feature Adapters Quadratic Neural Networks for Click-through Rate Prediction KDD ’25, August 3–7, 2025, Toronto, ON, Canada from Large Language...

  42. [50]

    Yanru Qu, Han Cai, Kan Ren, Weinan Zhang, Yong Yu, Ying Wen, and Jun Wang

  43. [51]

    Yanru Qu, Bohui Fang, Weinan Zhang, Ruiming Tang, Minzhe Niu, Huifeng Guo, Yong Yu, and Xiuqiang He. 2018. Product-based neural networks for user response prediction over multi-field categorical data. ACM Transactions on Information Systems (TOIS) 37, 1 (2018), 1–35

  44. [52]

    Prajit Ramachandran, Barret Zoph, and Quoc V Le. 2017. Searching for activation functions. arXiv preprint arXiv:1710.05941 (2017)

  45. [53]

    Steffen Rendle. 2010. Factorization machines. In 2010 IEEE International Confer- ence on Data Mining . IEEE, 995–1000

  46. [54]

    Steffen Rendle, Walid Krichene, Li Zhang, and John Anderson. 2020. Neural collaborative filtering vs. matrix factorization revisited. In Proceedings of the 14th ACM Conference on Recommender Systems . 240–248

  47. [55]

    In 2016 IEEE 16th International Conference on Data Mining (ICDM)

    Product-based neural networks for user response prediction. In 2016 IEEE 16th International Conference on Data Mining (ICDM) . IEEE, 1149–1154

  48. [56]

    Lei Sang, Honghao Li, Yiwen Zhang, Yi Zhang, and Yun Yang. 2024. AdaGIN: Adaptive Graph Interaction Network for Click-Through Rate Prediction. ACM Transactions on Information Systems (2024)

  49. [57]

    Weiping Song, Chence Shi, Zhiping Xiao, Zhijian Duan, Yewen Xu, Ming Zhang, and Jian Tang. 2019. AutoInt: Automatic feature interaction learning via self- attentive neural networks. InProceedings of the 28th ACM International Conference on Information and Knowledge Management ...

  50. [58]

    Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. 2014. Dropout: a simple way to prevent neural networks from overfitting. The journal of machine learning research 15, 1 (2014), 1929–1958

  51. [59]

    Yang Sun, Junwei Pan, Alex Zhang, and Aaron Flores. 2021. FM2: Field-matrixed factorization machines for recommender systems. In Proceedings of the Web Conference 2021. 2828–2837

  52. [60]

    Matthew Richardson, Ewa Dominowska, and Robert Ragno. 2007. Predicting clicks: estimating the click-through rate for new ads. In Proceedings of the 16th International Conference on World Wide Web. 521–530

  53. [61]

    Zhen Tian, Ting Bai, Wayne Xin Zhao, Ji-Rong Wen, and Zhao Cao. 2023. Euler- Net: Adaptive Feature Interaction Learning via Euler’s Formula for CTR Predic- tion. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval ...

  54. [62]

    Zhen Tian, Yuhong Shi, Xiangkun Wu, Wayne Xin Zhao, and Ji-Rong Wen

  55. [63]

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. Advances in Neural Information Processing Systems 30 (2017)

  56. [64]

    Fangye Wang, Hansu Gu, Dongsheng Li, Tun Lu, Peng Zhang, and Ning Gu. 2023. Towards Deeper, Lighter and Interpretable Cross Network for CTR Prediction. In Proceedings of the 32nd ACM International Conference on Information and Knowledge Management. 2523–2533

  57. [65]

    Antti Tarvainen and Harri Valpola. 2017. Mean Teachers Are Better Role Models: Weight-averaged Consistency Targets Improve Semi-supervised Deep Learning Results. Advances in neural information processing systems 30 (2017)

  58. [66]

    Ruoxi Wang, Bin Fu, Gang Fu, and Mingliang Wang. 2017. Deep & cross network for ad click predictions. In Proceedings of the ADKDD’17 . 1–7

  59. [67]

    Ruoxi Wang, Rakesh Shivanna, Derek Cheng, Sagar Jain, Dong Lin, Lichan Hong, and Ed Chi. 2021. DCNv2: Improved deep & cross network and practical lessons for web-scale learning to rank systems. In Proceedings of the Web Conference 2021. 1785–1797

  60. [68]

    Zhiqiang Wang, Qingyun She, and Junlin Zhang. 2021. MaskNet: Introducing feature-wise multiplication to CTR ranking models by instance-guided mask. arXiv preprint arXiv:2102.07619 (2021)

  61. [69]

    Lijun Wu, Juntao Li, Yue Wang, Qi Meng, Tao Qin, Wei Chen, Min Zhang, Tie-Yan Liu, et al. 2021. R-drop: Regularized Dropout for Neural Networks. Advances in Neural Information Processing Systems 34 (2021), 10890–10905

  62. [70]

    Jun Xiao, Hao Ye, Xiangnan He, Hanwang Zhang, Fei Wu, and Tat-Seng Chua

  63. [71]

    Fangye Wang, Yingxu Wang, Dongsheng Li, Hansu Gu, Tun Lu, Peng Zhang, and Ning Gu. 2023. CL4CTR: A Contrastive Learning Framework for CTR Prediction. In Proceedings of the Sixteenth ACM International Conference on Web Search and Data Mining. 805–813

  64. [72]

    Chenhui Xu, Fuxun Yu, Maoliang Li, Zihao Zheng, Zirui Xu, Jinjun Xiong, and Xiang Chen. 2024. Infinite-Dimensional Feature Interaction. arXiv preprint arXiv:2405.13972 (2024)

  65. [73]

    Chenhui Xu, Fuxun Yu, Zirui Xu, Chenchen Liu, Jinjun Xiong, and Xiang Chen

  66. [74]

    Zirui Xu, Fuxun Yu, Jinjun Xiong, and Xiang Chen. 2022. Quadralib: A Performant Quadratic Neural Network Library for Architecture Optimization and Design Exploration. Proceedings of Machine Learning and Systems 4 (2022), 503–514

  67. [75]

    Guanghu Yuan, Fajie Yuan, Yudong Li, Beibei Kong, Shujie Li, Lei Chen, Min Yang, Chenyun Yu, Bo Hu, Zang Li, et al . 2022. Tenrec: A large-scale multipurpose benchmark dataset for recommender systems. Advances in Neural Information Processing Systems 35 (2022), 11480–11493

  68. [76]

    Kexin Zhang, Fuyuan Lyu, Xing Tang, Dugang Liu, Chen Ma, Kaize Ding, Xi- uqiang He, and Xue Liu. 2025. Fusion Matters: Learning Fusion in Deep Click- through Rate Prediction Models. In Proceedings of the Eighteenth ACM Interna- tional Conference on Web Search and Data Mining (...

  69. [77]

    Guorui Zhou, Xiaoqiang Zhu, Chenru Song, Ying Fan, Han Zhu, Xiao Ma, Yanghui Yan, Junqi Jin, Han Li, and Kun Gai. 2018. Deep interest network for click-through rate prediction. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining ...

  70. [78]

    Chenhui Xu, Xinyao Wang, Fuxun Yu, JInjun Xiong, and Xiang Chen. 2024. QuadraNet V2: Efficient and Sustainable Training of High-Order Neural Networks with Quadratic Adaptation. arXiv preprint arXiv:2405.03192 (2024)

  71. [79]

    Jieming Zhu, Quanyu Dai, Liangcai Su, Rong Ma, Jinyang Liu, Guohao Cai, Xi Xiao, and Rui Zhang. 2022. Bars: Towards open benchmarking for recommender systems. In Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval . 2912–2923

  72. [80]

    Jieming Zhu, Qinglin Jia, Guohao Cai, Quanyu Dai, Jingjie Li, Zhenhua Dong, Ruiming Tang, and Rui Zhang. 2023. FINAL: Factorized interaction layer for CTR prediction. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retri...

  73. [81]

    In2024 29th Asia and South Pacific Design Automation Conference (ASP-DAC)

    QuadraNet: Improving High-Order Neural Interaction Efficiency with Hardware-Aware Quadratic Neural Networks. In2024 29th Asia and South Pacific Design Automation Conference (ASP-DAC). IEEE, 19–25

  74. [86]

    Chenxu Zhu, Peng Du, Weinan Zhang, Yong Yu, and Yang Cao. 2022. Combo- fashion: Fashion clothes matching CTR prediction with item history. In Pro- ceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining. 4621–4629

  75. [89]

    Jieming Zhu, Jinyang Liu, Shuai Yang, Qi Zhang, and Xiuqiang He. 2021. Open Benchmarking for Click-through Rate Prediction. In Proceedings of the 30th ACM International Conference on Information & Knowledge Management . 2759–2769

  76. [2016]

    In Proceedings of the 1st Workshop on Deep Learning for Recommender Systems

    Wide & deep learning for recommender systems. In Proceedings of the 1st Workshop on Deep Learning for Recommender Systems . 7–10

  77. [2017]

    In Proceedings of the 26th International Joint Conference on Artificial Intelligence

    Attentional factorization machines: learning the weight of feature in- teractions via attention networks. In Proceedings of the 26th International Joint Conference on Artificial Intelligence. 3119–3125

  78. [2019]

    In The World Wide Web Conference

    Feature generation by convolutional neural network for click-through rate prediction. In The World Wide Web Conference. 1119–1129

  79. [2023]

    Proceedings of the AAAI Conference on Artificial Intelligence, 37(4), 4552-4560

    FinalMLP: An Enhanced Two-Stream MLP Model for CTR Prediction. Proceedings of the AAAI Conference on Artificial Intelligence, 37(4), 4552-4560. (2023)

  80. [2024]

    In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining

    Rotative Factorization Machines. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 2912–2923

  81. [2025]

    arXiv:2407.13349 [cs.IR] https://arxiv.org/abs/2407.13349

    FCN: Fusing Exponential and Linear Cross Network for Click-Through Rate Prediction. arXiv:2407.13349 [cs.IR] https://arxiv.org/abs/2407.13349

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.