REVIEW 3 major objections 6 minor 106 references
OneShot's claim: train the retrieval index itself under the ranking objective, and billion-scale search can escape the dot-product bottleneck — with measured +20% recall and 10x efficiency gains in a deployed recommender.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-03 01:38 UTC pith:ZQXKM66M
load-bearing objection A plausible, well-engineered industrial retrieval paper whose big causal claim — that index-in-ranking, not just neural scoring capacity, drives the +20% recall — is not actually isolated by its own experiments. the 3 major comments →
OneShot: Index-in-Ranking with Neural Scoring for Large-Scale Retrieval
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central claim is that index and ranker can be one model. OneShot assigns each item a multi-layer one-hot code, scores each code layer against the user with a — possibly nonlinear — network, and trains the whole code hierarchy directly under the sampled-softmax ranking loss, with a dedicated balancing term (Eq. 4.7). Because the codebooks are optimized by the ranking objective itself, item embeddings no longer need the dot-product-friendly geometry that approximate-nearest-neighbor indexes require, so neural scoring becomes viable in retrieval. The paper shows recall rising with interaction width and depth (0.4016 to 0.4613), reports a 2-layer index matching a 16384-cluster baseline while
What carries the argument
The central object is the index-in-ranking loss of Eq. (4.7): per layer, the sampled-softmax ranking loss is applied to the sum of code scores over layers up to and including that layer — a nested summation that works as residual boosting — plus a dense-embedding ranking term and a balancing term. Three mechanisms carry it. The Straight-Through Estimator keeps the forward pass hard (one-hot codes) while backpropagating through soft assignment probabilities, so the discrete index stays differentiable. A decoupled dense embedding frees the codes from reconstruction objectives and lets the scorers be arbitrary neural networks on user–item pairs. And the balancing surrogate, Eq. (4.9) — the inne
Load-bearing premise
The convergence guarantee for the balancing loss is proven only for soft cluster assignments, but the deployed system tracks hard one-hot assignments through a straight-through gradient surrogate; the balanced-index property — and with it the recall and efficiency gains — depends on that unproven surrogate behaving like the proven one.
What would settle it
Two checks could settle the load-bearing claim. First, the convergence theorem covers softly-assigned objectives while the deployed system tracks hard one-hot assignments with a straight-through gradient proxy: train identical models with the soft tracker and with the hard tracker, and see whether recall or the max/mean cluster ratio diverges. Second, the balancing term is meant to be global: re-measure cluster-size statistics on a deduplicated corpus an order of magnitude larger than the evaluation set; if the P99/mean ratio (2.26 under OneShot) drifts toward the no-balancing baseline (190),
If this is right
- Retrieval interaction models can now scale the way ranking models do: recall rises monotonically as the neural scorer's width and depth grow (0.4016 to 0.4613), a scaling regime previously reserved for the ranking stage.
- At matched recall, indexing gets roughly 10x cheaper: a 2-layer OneShot index ranks 90% fewer items than the 16384-cluster ANN baseline at the same recall.
- Discrete codes carry most of the dense model's predictive power — layer 4 of a 4-layer index reaches about 80% of dense like@10 — so the index itself can act as the item representation when serving compute is scarce.
- Assignments matter more than codebooks: with a frozen semantic-ID codebook, merely learning the item-to-code assignment recovers most of the fully-learned EID recall (0.4230 vs 0.4308, versus 0.1354 for frozen SIDs), which points toward token-based generative recommenders.
- The balancing surrogate transfers across domains: as a Mixture-of-Experts load-balancing loss in LLM pretraining, the KL form matches the standard Switch loss at usual strength and, under reduced balancing weight, leaves no dead experts.
Where Pith is reading between the lines
- If the ranking objective can fully determine the index, the classic pipeline's two separate steps — learn embeddings, then build a proximity index — become one learning problem. A sharper test of that thesis would be training retrieval with no proximity-or-reconstruction term at all, supervised purely by engagement, which this paper approaches but does not quite isolate.
- The Appendix's KL-versus-Switch comparison exposes a general principle about balancing any discrete allocation: a logarithmically growing penalty protects under-used buckets (raising the valley, eliminating dead experts) at the cost of a higher peak. That principle should transfer to other load-balancing problems — learned hash tables, cluster assignment in distributed storage, token bucket alloca
- The EID result suggests codes group items by co-engagement rather than meaning; a hybrid that appends learned engagement codes to semantic IDs is the paper's own suggested direction. A natural test is cold start: semantic structure should matter most for items with little engagement history, so a hybrid's advantage over pure EIDs should be largest there.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. OneShot proposes an end-to-end, in-model hierarchical index for large-scale retrieval, replacing the conventional decoupled ANN index with multi-layer one-hot codebooks trained by the same sampled-softmax ranking losses as the dense scoring stage. The method adds a logit-level boosting scheme across layers, swaps dot-product scoring for nonlinear neural scoring on both code and dense branches, and regularizes codebook balance using a surrogate derived from stochastic compositional gradient descent (SCGD). Experiments on Instagram short-video retrieval compare OneShot against k-means ANN, reporting +20% relative recall at the 1% ranking-volume operating point, roughly 10x efficiency gains in a two-layer setting, improved cluster-balance statistics, and small positive online A/B metrics. The paper also applies the balancing surrogate to MoE routing and compares OneShot-generated item IDs with semantic IDs.
Significance. If the claims hold, this is a significant contribution to the retrieval literature: it directly addresses the long-standing misalignment between index construction and ranking objectives, and it demonstrates that nonlinear interaction models can be used in the indexing stage rather than being confined to late-stage ranking. The paper's strengths include a clean architectural formulation, a principled SCGD derivation of the balancing surrogate, and a realistic industrial evaluation that uses the full serving pipeline and reports deployment metrics. The balancing method is also shown to transfer to MoE load balancing, which broadens the impact. However, the central causal claim about index-in-ranking is not yet isolated from the capacity gains of neural scoring, and the theoretical guarantee is proved only for a soft-assignment surrogate while the deployed system uses hard assignments with straight-through estimation. Reproducibility is further limited by the absence of code/data and by the lack of statistical error bars on the online metrics.
major comments (3)
- [§5.1.1, Fig. 3, Table 2] The central claim that 'index-in-ranking' is what enables neural scoring and produces the reported recall gains is confounded. Every offline comparison pits the full OneShot system (neural scoring for both code and dense stages, jointly trained index) against a k-means ANN baseline that uses dot-product scoring and a decoupled index. The +20% recall improvement could therefore be due primarily to the added capacity of the neural scorer, independent of how the index is trained. The paper needs a controlled ablation, for example: (a) a fixed k-means index combined with the same neural scoring functions NN_l and NN_d used by OneShot, optionally with the scorer trained after clustering; and (b) OneShot with dot-product scoring in place of neural scoring. Without these conditions, the paper's foundational contribution—that aligning index learning with ranking objectives is what makes neural s
- [§4.3, Appendix B, Eq. (B.5)] Theorem 4.1 proves the surrogate property and convergence guarantee for the soft-assignment objective, where the inner map is p_i^(l). In deployment, however, the usage tracker qhat is updated from hard assignments e_i^(l) (Eq. B.5), and gradients are obtained by replacing the derivative of the hard assignment with that of p_i^(l) via straight-through estimation. The theorem's almost-sure convergence guarantee does not apply to this hard-assignment/STE objective. The paper transparently acknowledges this gap, but then continues to describe the method as 'theoretically grounded.' Because the balancing mechanism is central to the index-quality and efficiency claims, the authors should either extend the convergence/bias analysis to the deployed hard-assignment tracker under explicitly stated conditions, or reframe the hard-assignment version as a heuristic and clearly separate the proven so
- [§5.1.2, Table 3] The online A/B results are presented as percentage gains without confidence intervals, significance tests, experiment duration, or number of users/days. Given that the reported gains are small in absolute terms (+0.035% daily sessions, +0.136% time-spent), the statement that these are 'significant wins' cannot be verified from the information provided. Please add statistical significance measures, confidence intervals, and a description of the A/B testing methodology (e.g., number of users, number of days, any guardrail metrics). Without this, the online validation is not quantitatively assessable.
minor comments (6)
- [§1, §2] The description of NANN's 'flat' constraint on the neural scoring landscape is asserted without a precise reference to the specific equation or formal condition in Chen et al. (2022). Please add a citation to the relevant definition or lemma.
- [§4.3, Table 4] The hyperparameters λ_marg, λ_joint, and the EMA coefficient ρ are not reported for the main balancing experiments. Please provide the values used in Table 4 and any sensitivity analysis.
- [§4.3, Eq. (4.9)] The definition of B_item should be made more precise: it is a deduplicated item minibatch uniformly sampled from the candidate corpus. Clarify how this differs from the user-item impression minibatch B and how it is constructed in practice.
- [§5.1.1, Table 2] The caption states that K=0 is 'a simple linear projection from U^T V to task logits.' This is still not the exact dot-product scoring used by the k-means ANN baseline. Please clarify whether the baseline was also given this linear projection, and state explicitly which components differ between the two systems.
- [Appendix C] The MoE experiments would benefit from additional details on the C4 data preprocessing, tokenizer, exact training compute, and optimizer schedules. As written, the comparison is difficult to reproduce independently.
- [Figures 2 and 6] The figures are dense and the text labels are small. Please increase font sizes and consider separating the forward/backward gradient paths more clearly in Figure 2.
Circularity Check
No circular dependency: OneShot's empirical claims are measurements and its balanced-index surrogate is an external-theory-backed derivation.
full rationale
Walking the claimed derivation chain: Eq. (4.1) defines index-in-ranking as L_rank applied to code embeddings; Eq. (4.7) sums such terms with dense ranking and balancing losses. These are constructions, not predictions of the observed recall/efficiency numbers. The recall, cluster-balance, and online metrics in Tables 2–4 and Figure 3 are measured on held-out serving data or A/B tests, with no fitted constant later reported as a forecast. The balancing regularizer (4.9) is derived algebraically as an SCGD surrogate, and the convergence statement explicitly invokes the external theorem of Wang et al. (2017); no self-citation carries the load and the derivation does not assume the recall result. The one admitted gap—Theorem 4.1 is proved for soft assignments while deployment uses hard-assignment EMA plus STE (Section 4.3, Appendix B Eq. B.5)—is a soundness/coverage gap, not circular reasoning: the hard-assignment variant is not claimed to follow from, nor to be equivalent to, the theorem. The causal attribution of the +20% recall to index-in-ranking rather than to neural-scoring capacity is under-supported by ablations, but that is an experimental identification issue, not a definitional reduction of the result to its inputs.
Axiom & Free-Parameter Ledger
free parameters (7)
- Codebook sizes and number of layers (L, N_l) =
1-layer 16384; 2-layer 2048/1024; 4-layer 2048 each
- Sampled-softmax inverse temperature beta =
not reported
- Soft-assignment temperature T =
not reported
- Gumbel noise strength gamma =
0.1 (vs 0)
- Segment-wise interaction dimensions d', m, n =
d'=256, m=12, n=1 (m also swept)
- Balancing coefficients lambda_marg, lambda_joint =
e.g., (10,0) and (5,3) in Table 6
- EMA coefficient rho for usage tracker =
not reported
axioms (6)
- standard math SCGD convergence theorem of Wang et al. (2017) applies to the soft-assignment surrogate (4.9).
- domain assumption Sampled softmax with logQ correction provides an unbiased estimate of the full-corpus softmax loss.
- domain assumption Balancing against the uniform distribution over the deduplicated candidate corpus is the right serving-efficiency target.
- ad hoc to paper The hard-assignment EMA tracker with STE gradients inherits the SCGD guarantee of Theorem 4.1.
- ad hoc to paper Straight-through estimation gives usable gradients for discrete one-hot codes.
- standard math Gumbel-Max trick produces exact categorical samples from the softmax assignment distribution.
invented entities (1)
-
Engagement ID (EID)
independent evidence
read the original abstract
In modern recommendation systems, retrieval serves as a primary stage responsible for filtering billions of candidate items down to thousands prior to refined ranking. To make this massive search effective and efficient, the system relies on ranking accuracy and indexing efficiency. However, these two objectives are traditionally misaligned: while the former optimizes for the alignment between ranking predictions and user behavior, the latter optimizes for a structural grouping of item representations which enables fast search among billions of candidates. Thus, despite extensive efforts to scale up interaction modeling for retrieval, they remain fundamentally limited by the structural misalignment between the ranking objectives and the proximity-learned index. In this work, we address this long-standing dichotomy by proposing a new holistic retrieval framework, OneShot. It is an end-to-end, in-model index learning framework that natively aligns index learning with ranking objectives. Using this joint learning as a structural foundation, OneShot pushes the boundaries of retrieval expressiveness by scaling interaction modeling with neural scoring beyond the persistent dot-product bottleneck. OneShot is fully deployed in Instagram's industrial short-video recommendation system, driving significant wins in user daily sessions, engagement, and time-spent. Additionally, OneShot achieves a $20\%$ recall gain at the operational ranking volume and a 10x efficiency improvement at an equivalent recall level.
Reference graph
Works this paper leans on
-
[1]
Deng, Jiaxin and Wang, Shiyao and Cai, Kuo and Ren, Lejian and Hu, Qigen and Ding, Weifeng and Luo, Qiang and Zhou, Guorui , eprint=
-
[2]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year=
Autoregressive image generation using residual quantization , author=. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year=
-
[3]
IEEE Transactions on Communications , volume=
An algorithm for vector quantizer design , author=. IEEE Transactions on Communications , volume=. 1980 , publisher=
1980
-
[4]
International Joint Conference on Artificial Intelligence (IJCAI) , year=
Latent class models for collaborative filtering , author=. International Joint Conference on Artificial Intelligence (IJCAI) , year=
-
[5]
IEEE International Conference on Data Mining (ICDM) , year=
A scalable collaborative filtering framework based on co-clustering , author=. IEEE International Conference on Data Mining (ICDM) , year=
-
[6]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Predictive discrete latent factor models for large scale dyadic data , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[7]
ACM International Conference on Information and Knowledge Management (CIKM) , year=
Jointly Optimizing Query Encoder and Product Quantization to Improve Retrieval Performance , author=. ACM International Conference on Information and Knowledge Management (CIKM) , year=
-
[8]
ACM International Conference on Web Search and Data Mining (WSDM) , year=
Learning Discrete Representations via Constrained Clustering for Effective and Efficient Dense Retrieval , author=. ACM International Conference on Web Search and Data Mining (WSDM) , year=
-
[9]
Tensorflow: Large-scale machine learning on heterogeneous distributed systems , author=. 1603.04467 , archivePrefix=
-
[10]
ACM Conference on Recommender Systems (RecSys) , year=
Speeding up the xbox recommender system using a euclidean transformation for inner-product spaces , author=. ACM Conference on Recommender Systems (RecSys) , year=
-
[11]
International Conference on Machine Learning (ICML) , year=
Fast nearest neighbor retrieval for bregman divergences , author=. International Conference on Machine Learning (ICML) , year=
-
[12]
Statistical Analysis and Data Mining: The ASA Data Science Journal , volume=
Dual-tree fast exact max-kernel search , author=. Statistical Analysis and Data Mining: The ASA Data Science Journal , volume=
-
[13]
SIAM International Conference on Data Mining (SDM) , year=
Fast exact max-kernel search , author=. SIAM International Conference on Data Mining (SDM) , year=
-
[14]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Embedding-based retrieval in facebook search , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[15]
ACM International Conference on Information and Knowledge Management (CIKM) , year=
Multi-interest network with dynamic routing for recommendation at Tmall , author=. ACM International Conference on Information and Knowledge Management (CIKM) , year=
-
[16]
Information Systems , volume=
Approximate nearest neighbor algorithm based on navigable small world graphs , author=. Information Systems , volume=
-
[17]
Relevance Proximity Graphs for Fast Relevance Retrieval , author=. 1908.06887 , archivePrefix=
Pith/arXiv arXiv 1908
-
[18]
The VLDB Journal , volume=
Searching in metric spaces by spatial approximation , author=. The VLDB Journal , volume=
-
[19]
ACM International Conference on Information and Knowledge Management (CIKM) , year=
Search-based user interest modeling with lifelong sequential behavior data for click-through rate prediction , author=. ACM International Conference on Information and Knowledge Management (CIKM) , year=
-
[20]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Maximum inner-product search using cone trees , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[21]
ACM Web Conference (WWW) , year=
Asymmetric minwise hashing for indexing binary inner products and set containment , author=. ACM Web Conference (WWW) , year=
-
[22]
ACM International Conference on Web Search and Data Mining (WSDM) , year=
Fast item ranking under neural network based measures , author=. ACM International Conference on Web Search and Data Mining (WSDM) , year=
-
[23]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Deep interest network for click-through rate prediction , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[24]
ACM Conference on Recommender Systems (RecSys) , year=
Field-aware factorization machines for CTR prediction , author=. ACM Conference on Recommender Systems (RecSys) , year=
-
[25]
IEEE International Conference on Data Mining (ICDM) , year=
Factorization machines , author=. IEEE International Conference on Data Mining (ICDM) , year=
-
[26]
ACM International Conference on Information and Knowledge Management (CIKM) , year=
Candidate generation with binary codes for large-scale top-n recommendation , author=. ACM International Conference on Information and Knowledge Management (CIKM) , year=
-
[27]
ACM Web Conference (WWW) , year=
Item-based collaborative filtering recommendation algorithms , author=. ACM Web Conference (WWW) , year=
-
[28]
com recommendations: Item-to-item collaborative filtering , author=
Amazon. com recommendations: Item-to-item collaborative filtering , author=. IEEE Internet Computing , volume=. 2003 , publisher=
2003
-
[29]
Advances in Neural Information Processing Systems (NeurIPS) , year=
Probabilistic matrix factorization , author=. Advances in Neural Information Processing Systems (NeurIPS) , year=
-
[30]
Computer , volume=
Matrix factorization techniques for recommender systems , author=. Computer , volume=. 2009 , publisher=
2009
-
[31]
DeepFM: a factorization-machine based neural network for CTR prediction , author=. 1703.04247 , archivePrefix=
-
[32]
IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=
Optimized product quantization , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2014 , publisher=
2014
-
[33]
IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=
Scalable nearest neighbor algorithms for high dimensional data , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2014 , publisher=
2014
-
[34]
IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=
Rank-based similarity search: Reducing the dimensional dependence , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2015 , publisher=
2015
-
[35]
Advances in Neural Information Processing Systems (NeurIPS) , year=
Joint optimization of tree-based index and deep model for recommender systems , author=. Advances in Neural Information Processing Systems (NeurIPS) , year=
-
[36]
Learning K-way D-dimensional discrete codes for compact embedding representations , author=. 1806.09464 , archivePrefix=
-
[37]
A New Unbiased and Efficient Class of LSH-Based Samplers and Estimators for Partition Function Computation in Log-Linear Models , author=. 1703.05160 , archivePrefix=
-
[38]
Asymmetric
Shrivastava, Anshumali and Li, Ping , booktitle=. Asymmetric
-
[39]
International Conference on Machine Learning (ICML) , year=
Learning optimal tree models under beam search , author=. International Conference on Machine Learning (ICML) , year=
-
[40]
Journal of the Royal Statistical Society: Series B (Methodological) , volume=
Maximum likelihood from incomplete data via the EM algorithm , author=. Journal of the Royal Statistical Society: Series B (Methodological) , volume=. 1977 , publisher=
1977
-
[41]
Extreme classification in log memory using count-min sketch: A case study of
Medini, Tharun Kumar Reddy and Huang, Qixuan and Wang, Yiqiu and Mohan, Vijai and Shrivastava, Anshumali , booktitle=. Extreme classification in log memory using count-min sketch: A case study of
-
[42]
You, Ronghui and Zhang, Zihan and Wang, Ziye and Dai, Suyang and Mamitsuka, Hiroshi and Zhu, Shanfeng , booktitle=
-
[43]
International Conference on Machine Learning (ICML) , year=
Bayes optimal multilabel classification via probabilistic classifier chains , author=. International Conference on Machine Learning (ICML) , year=
-
[44]
Advances in Neural Information Processing Systems (NeurIPS) , year=
Efficient loss-based decoding on graphs for extreme classification , author=. Advances in Neural Information Processing Systems (NeurIPS) , year=
-
[45]
Log-time and log-space extreme classification , author=. 1611.01964 , archivePrefix=
-
[46]
STEM: Scaling Transformers with Embedding Modules , author=. 2601.10639 , archivePrefix=
-
[47]
He, Ruining and Heldt, Lukasz and Hong, Lichan and Keshavan, Raghunandan and Mao, Shifan and Mehta, Nikhil and Su, Zhengyang and Tsai, Alicia and Wang, Yueqi and Wang, Shao-Chuan and others , booktitle=
-
[48]
, author=
Adaptive subgradient methods for online learning and stochastic optimization. , author=. Journal of Machine Learning Research (JMLR) , volume=
-
[49]
A distributed data-parallel pytorch implementation of the distributed shampoo optimizer for training neural networks at-scale , author=. 2309.06497 , archivePrefix=
-
[50]
International Conference on Machine Learning (ICML) , year=
Shampoo: Preconditioned stochastic tensor optimization , author=. International Conference on Machine Learning (ICML) , year=
-
[51]
Annual Meeting of the Association for Computational Linguistics and International Joint Conference on Natural Language Processing (ACL-IJCNLP) , year=
On Using Very Large Target Vocabulary for Neural Machine Translation , author=. Annual Meeting of the Association for Computational Linguistics and International Joint Conference on Natural Language Processing (ACL-IJCNLP) , year=
-
[52]
Entropy , VOLUME =
Ramos, Daniel and Franco-Pedroso, Javier and Lozano-Diez, Alicia and Gonzalez-Rodriguez, Joaquin , TITLE =. Entropy , VOLUME =. 2018 , NUMBER =
2018
-
[53]
ACM Conference on Recommender Systems (RecSys) , year=
Sampling-bias-corrected neural modeling for large corpus item recommendations , author=. ACM Conference on Recommender Systems (RecSys) , year=
-
[54]
ACM Transactions on Information Systems , volume=
On the effectiveness of sampled softmax loss for item recommendation , author=. ACM Transactions on Information Systems , volume=. 2024 , publisher=
2024
-
[55]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Real-time Indexing for Large-scale Recommendation by Streaming Vector Quantization Retriever , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[56]
Advances in Neural Information Processing Systems (NeurIPS) , year=
Unsupervised Learning of Visual Features by Contrasting Cluster Assignments , author=. Advances in Neural Information Processing Systems (NeurIPS) , year=
-
[57]
Deep Neural Networks for
Covington, Paul and Adams, Jay and Sargin, Emre , booktitle=. Deep Neural Networks for
-
[58]
Advances in Neural Information Processing Systems (NeurIPS) , year=
Sinkhorn Distances: Lightspeed Computation of Optimal Transport , author=. Advances in Neural Information Processing Systems (NeurIPS) , year=
-
[59]
Du, Nan and Huang, Yanping and Dai, Andrew M and Tong, Simon and Lepikhin, Dmitry and Xu, Yuanzhong and Krikun, Maxim and Zhou, Yanqi and Yu, Adams Wei and Firat, Orhan and others , booktitle=
-
[60]
Fedus, William and Zoph, Barret and Shazeer, Noam , journal=
-
[61]
International Conference on Machine Learning (ICML) , year=
Accelerating Large-Scale Inference with Anisotropic Vector Quantization , author=. International Conference on Machine Learning (ICML) , year=
-
[62]
Mixtral of Experts , author=. 2401.04088 , archivePrefix=
-
[63]
Spherical
Hornik, Kurt and Feinerer, Ingo and Kober, Martin and Buchta, Christian , journal=. Spherical
-
[64]
Billion-Scale Similarity Search with
Johnson, Jeff and Douze, Matthijs and J. Billion-Scale Similarity Search with. IEEE Transactions on Big Data , volume=. 2021 , publisher=
2021
-
[65]
IEEE International Conference on Data Mining (ICDM) , year=
Self-Attentive Sequential Recommendation , author=. IEEE International Conference on Data Mining (ICDM) , year=
-
[66]
Lepikhin, Dmitry and Lee, HyoukJoong and Xu, Yuanzhong and Chen, Dehao and Firat, Orhan and Huang, Yanping and Krikun, Maxim and Shazeer, Noam and Chen, Zhifeng , booktitle=
-
[67]
ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR) , year=
Mamba4Rec: Towards Efficient Sequential Recommendation with Selective State Space Models , author=. ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR) , year=
-
[68]
Vector Quantization for Recommender Systems: A Review and Outlook , author=. 2405.03110 , archivePrefix=
-
[69]
Advances in Neural Information Processing Systems (NeurIPS) , year=
Neural Discrete Representation Learning , author=. Advances in Neural Information Processing Systems (NeurIPS) , year=
-
[70]
Matrix Factorization Revisited , author=
Neural Collaborative Filtering vs. Matrix Factorization Revisited , author=. ACM Conference on Recommender Systems (RecSys) , year=
-
[71]
International Conference on Learning Representations (ICLR) , year=
Outrageously Large Neural Networks: The Sparsely-Gated Mixture-of-Experts Layer , author=. International Conference on Learning Representations (ICLR) , year=
-
[72]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Scalable and Sustainable Deep Learning via Randomized Hashing , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[73]
IEEE/ACM Transactions on Audio, Speech, and Language Processing , volume=
SoundStream: An End-to-End Neural Audio Codec , author=. IEEE/ACM Transactions on Audio, Speech, and Language Processing , volume=. 2021 , publisher=
2021
-
[74]
Multimodal Quantitative Language for Generative Recommendation , author=. 2504.05314 , archivePrefix=
-
[75]
Towards Scalable Semantic Representation for Recommendation , author=. 2410.09560 , archivePrefix=
-
[76]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Learning Tree-based Deep Model for Recommender Systems , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[77]
ACM Web Conference (WWW) , year=
Retrieval with Learned Similarities , author=. ACM Web Conference (WWW) , year=
-
[78]
ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
Revisiting Neural Retrieval on Accelerators , author=. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD) , year=
-
[79]
2412.19437 , archivePrefix=
-
[80]
Advances in Neural Information Processing Systems (NeurIPS) , year=
Recommender Systems with Generative Retrieval , author=. Advances in Neural Information Processing Systems (NeurIPS) , year=
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.