REVIEW 4 major objections 7 minor 29 references
Semantic-enhanced Modality-asymmetric Retrieval for Online E-commerce Search
T0 review · 4 major / 7 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Adding item images to a text-only retrieval tower raises recall@50 from 0.641 to 0.690 on an industrial click-log dataset.
desk verdict A practical multimodal retrieval extension with a credible offline story and a real dataset release, but the online gain claim is weakened by adding extra candidates only in the test arm. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the item multimodal tower, which fuses text and image by feeding text hidden states as queries and image hidden states as keys/values into a transformer layer, so the image contributes only where text attends to it. Around this tower, SMAR organizes three pretraining tasks—semantic projection between query text and item text, modality alignment between query text and item image, and asymmetric alignment between query text and the fused item—combined in a weighted loss $\alpha\mathcal{L}_t + \beta\mathcal{L}_i + \gamma\mathcal{L}_m$. In fine-tuning, a learned prediction header $P$, supervised on a fashion dataset, decides per query whether to use the multimodal item embedding ($P=1$) or the text-only embedding ($P=0$), with loss $P\mathcal{L}'_m + (1-P)\mathcal{L}'_t$. These pieces are what carry the reported recall gain.
What would settle it
Re-train SMAR and DPSR on the first 50 days of the released click logs, freeze all hyperparameters before touching the final split, and evaluate on days 51-60; if the recall@50 advantage of SMAR over DPSR disappears or reverses, the reported gain is an artifact of the split rather than a general property of the method.
Extended reading notes
Core claim
SMAR's central claim is that the asymmetry itself—text-only query, text-plus-image item—can be turned into an advantage rather than a nuisance, provided the model separates the contributions of each modality and lets the query decide when the image should matter. Concretely, the paper reports that the full model improves recall@50 from 0.641 (DPSR) to 0.690 on the overall test set, and that the gain is not from any single component: removing the modality alignment task, the semantic projection task, or the fusion/alignment tasks each lowers recall, as does removing cross-attention from the item multimodal tower. The paper also reports online A/B improvements of +0.285% GMV and +0.174% UCVR overall, and +1.112% and +0.437% in fashion categories, and it releases the industrial dataset for reproduction.
Load-bearing premise
The reported gains assume that the loss weights for text, image, and combined tasks, and the fashion-supervised rule for when to use the image, generalize to new queries; the paper reports no held-out validation protocol or significance tests for these choices.
Editorial extensions
If this is right
- Item images can be added to a retrieval tower without requiring the query side to carry images, so existing text-only query pipelines can be upgraded in place.
- The multi-task pretraining objectives each contribute; dropping the modality-alignment task, the semantic-projection task, or the fusion-alignment task reduces recall, so the gain is not attributable to one loss.
- Cross-attention fusion is doing real work: removing it from the item multimodal tower lowers recall, indicating the image signal enters through text-conditioned attention rather than simple concatenation.
- Adaptive gating matters for business metrics: online, the gains are concentrated in fashion categories, consistent with the idea that image information should be used selectively.
Reading between the lines
- Beyond the paper, the same cross-attention fusion plus query-side gating recipe could transfer to other asymmetric retrieval settings, such as voice queries against product pages or text queries against video thumbnails.
- The offline table shows the largest relative recall gain on the not-fashion split (0.575 versus 0.486), while the online A/B gain is largest in fashion; reconciling this difference would clarify where the image signal actually matters in live traffic.
- Because synthetic queries outnumber real queries by more than 100 to 1, an ablation that trains without the synthetic augmentation would reveal how much of the gain comes from fusion and how much from the augmented training distribution itself.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SMAR, a two-stage retrieval model for the modality-asymmetric setting in e-commerce search, where queries are text-only and items have both text and image modalities. Stage 1 is a multi-task pre-training objective combining a text semantic projection loss, an image alignment loss, and a multimodal alignment loss. Stage 2 is a fine-tuning model with an adaptive prediction header P that decides, per query, whether to use the multimodal item embedding or the text-only item embedding. The authors report offline results on an industrial dataset showing that SMAR improves R@50, P@50, and F1@50 over the DPSR baseline, and online A/B test results claiming GMV and UCVR gains. They also release the dataset publicly.
Significance. If the offline results hold up under scrutiny, this is a useful empirical contribution to multimodal retrieval in e-commerce, and the public release of an industrial dataset is a concrete positive for reproducibility and future research. The two-stage design and the adaptive per-query gating of image information are sensible and go beyond simple concatenation of modalities. However, the online A/B test, which is cited in the abstract and conclusion as evidence of business impact, is confounded because the test group receives 1000 additional candidates relative to the control. The offline metrics are independent of that confound and are the strongest evidence, but they currently lack statistical validation. The paper also leaves several implementation details underspecified, including the loss weights and the supervision of the prediction header.
major comments (4)
- [Section 3.4, Table 3] The online A/B test changes two variables simultaneously: the retrieval model (SMAR vs. the baseline) and the number of candidates passed to downstream ranking. The text explicitly says 'our model SMAR retrieves another 1000 candidates in addition to the results in baseline group,' meaning the control group receives no extra candidates. Consequently, the reported GMV +0.285% and UCVR +0.174% improvements, and the larger fashion-category lifts, could be produced by the larger candidate pool alone, regardless of whether SMAR's multimodal embeddings are semantically better. This confound invalidates the attribution of the online gains to SMAR's retrieval quality. The abstract and conclusion cite these online results as evidence of real-world success, so the claim cannot stand as written. The authors should run a controlled A/B experiment with equal candidate counts in both groups, or reframe the online section as a test of candidate expansion and avoid claiming that the gains demonstrate the value of multimodal fusion.
- [Section 3.2, Table 1] The text states that SMAR 'outperforms baseline models significantly,' but no statistical support is provided: there are no error bars, no standard deviations, no confidence intervals, and no significance tests, nor is the number of evaluation runs stated. Several of the reported improvements are small in absolute terms (for example, overall R@50 of 0.690 for SMAR versus 0.681 for SMAR-nm; fashion R@50 of 0.770 versus 0.749 for DPSR). Without variance information or significance testing, the word 'significantly' is not substantiated. Please report multiple runs or bootstrap intervals and add appropriate significance tests for the main comparisons in Table 1.
- [Section 3.3, Fig. 3] The sensitivity analysis in Fig. 3 varies one of alpha, beta, gamma at a time while fixing the others to 1, but the paper never reports the concrete values of alpha, beta, and gamma used in the final model that produces Table 1. Since Eq. (13) defines the loss and these weights directly determine the training objective, the omission is a reproducibility gap. Please state the final weight values and describe how they were selected (for example, on a validation split).
- [Section 2.4.1 and Eq. (14)] The prediction header P is central to the claimed adaptive behavior, but its supervision is underspecified. The text only says it is 'supervised by a fashion dataset,' without defining the label space, the loss function, the training procedure, or how P's output is combined with the click-through loss in Eq. (14). Additionally, the assumption that a binary fashion/not-fashion split is a sufficient proxy for whether images are useful for a query is not validated. Please provide complete details of P's training and, ideally, an analysis or ablation demonstrating that P's decisions correlate with actual image usefulness for retrieval.
minor comments (7)
- [Abstract] There are several typos: 'infomration' should be 'information' and 'Scenorio' should be 'Scenario.'
- [Section 2.2, Eq. (8)] The notation in Eq. (8) is terse: H_m = transformer_m(H_t, H_i, H_i) means Q=H_t and K=V=H_i, but this should be stated explicitly for readability.
- [Figure 2] Figure 2 is extremely dense and the text labels are small. Please provide a higher-resolution figure or a labeled breakdown so that the four towers and the flow of losses are readable.
- [Section 3.1] The training setup says 'batch size 128 per gpu' with '2 Tesla A100 GPU cards.' Please clarify whether the effective batch size is 256 and how batch negative sampling is performed across GPUs.
- [Table 1] The table caption contains a typo: 'Comparision' should be 'Comparison.'
- [Section 3.4] The paper cites [17] for the A/B infrastructure, but the key issue is the experimental design. Please clarify the duration of the experiment and the traffic split (15% is mentioned, but the split between test and control within that 15% is not stated).
- [References] The GitHub link in the footnote should be verified; if the dataset is truly open-sourced, the repository should be listed with a stable identifier and an explicit license.
Circularity Check
No significant circularity: SMAR's central claim is an empirical retrieval-accuracy comparison on held-out industrial data, and the cited prior work supplies standard training components rather than the claimed result.
full rationale
The paper does not derive SMAR's superiority from its own definitions. Its central evidence is Table 1 (R@50/P@50/F1@50) on an industrial dataset split into overall/fashion/not-fashion, where SMAR is compared against a deployed baseline DPSR and several ablations. Those numbers are empirical outcomes of training and inference, not algebraic consequences of the loss definitions. The pretraining loss (Eq. 13) and fine-tuning loss (Eq. 14) are standard weighted combinations of cross-entropy objectives; the adaptive header P is supervised with a separate fashion dataset, so the final model is not by construction equal to the supervision. Self-citations such as [14] (synthetic-query sampling), [23] (DPSR baseline and negative sampling), and [8,20,22,23] (click-log training) are used as engineering ingredients or baselines, not as proof of the headline gain; none of them asserts the SMAR result. The main caveats are experimental-design weaknesses rather than circularity: the hyperparameter sweep in Fig. 3 reports test-set Recall without a validation split, and Section 3.4's A/B test gives the SMAR group 1000 extra candidates ('our model SMAR retrieves another 1000 candidates in addition to the results in baseline group'), confounding model quality with candidate coverage. These affect causal attribution of the online lifts, but they do not make the offline comparison an instance of a claim reducing to its inputs.
Assumptions & free parameters
free parameters (3)
- alpha (text loss weight) =
not reported, swept from 0.1 to 20
- beta (image loss weight) =
not reported, swept from 0.1 to 20
- gamma (multimodal loss weight) =
not reported, swept from 0.1 to 20
assumptions (3)
- domain assumption Click logs provide reliable implicit relevance labels for query-item pairs.
- domain assumption Transformer encoders can represent text and image features in a shared semantic space through cross-attention.
- ad hoc to paper A binary fashion/not-fashion split is a sufficient proxy for whether images are useful for a query.
Cite this review
Pith. "Pith review of Semantic-enhanced Modality-asymmetric Retrieval for Online E-commerce Search." pith.science (2026). https://pith.science/paper/OIHWW72K
@misc{pith2026250620330,
author = {Pith},
title = {Pith review of: Semantic-enhanced Modality-asymmetric Retrieval for Online E-commerce Search},
year = {2026},
howpublished = {\url{https://pith.science/paper/OIHWW72K}},
note = {Machine review of arXiv:2506.20330}
}
read the original abstract
Semantic retrieval, which retrieves semantically matched items given a textual query, has been an essential component to enhance system effectiveness in e-commerce search. In this paper, we study the multimodal retrieval problem, where the visual information (e.g, image) of item is leveraged as supplementary of textual information to enrich item representation and further improve retrieval performance. Though learning from cross-modality data has been studied extensively in tasks such as visual question answering or media summarization, multimodal retrieval remains a non-trivial and unsolved problem especially in the asymmetric scenario where the query is unimodal while the item is multimodal. In this paper, we propose a novel model named SMAR, which stands for Semantic-enhanced Modality-Asymmetric Retrieval, to tackle the problem of modality fusion and alignment in this kind of asymmetric scenario. Extensive experimental results on an industrial dataset show that the proposed model outperforms baseline models significantly in retrieval accuracy. We have open sourced our industrial dataset for the sake of reproducibility and future research works.
Figures
Reference graph
Works this paper leans on
-
[1]
Long Chen, Yuhang Zheng, and Jun Xiao. 2022. Rethinking data augmentation for robust visual question answering. In Computer Vision–ECCV 2022: 17th European Conference, Tel Aviv, Israel, October 23–27, 2022, Proceedings, Part XXXVI. Springer, 95–112
work page 2022
-
[2]
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2018. Bert: Pre-training of deep bidirectional transformers for language understanding.arXiv preprint arXiv:1810.04805 (2018)
arXiv 2018
-
[3]
Dehong Gao, Linbo Jin, Ben Chen, Minghui Qiu, Peng Li, Yi Wei, Yi Hu, and Hao Wang. 2020. Fashionbert: Text and image matching with adaptive loss for cross-modal retrieval. In Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval. 2251–2260
work page 2020
-
[4]
MD Zakir Hossain, Ferdous Sohel, Mohd Fairuz Shiratuddin, and Hamid Laga
-
[5]
Xiaowei Hu, Zhe Gan, Jianfeng Wang, Zhengyuan Yang, Zicheng Liu, Yumao Lu, and Lijuan Wang. 2022. Scaling up vision-language pre-training for image captioning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 17980–17989
work page 2022
-
[6]
Po-Sen Huang, Xiaodong He, Jianfeng Gao, Li Deng, Alex Acero, and Larry Heck. 2013. Learning deep structured semantic models for web search using clickthrough data. In Proceedings of the 22nd ACM international conference on Information & Knowledge Management. 2333–2338
work page 2013
-
[7]
Xingyu Jiang, Jiayi Ma, Guobao Xiao, Zhenfeng Shao, and Xiaojie Guo. 2021. A review of multimodal image matching: Methods and applications. Information Fusion 73 (2021), 22–71
work page 2021
-
[8]
Yunjiang Jiang, Han Zhang, Yiming Qiu, Yun Xiao, Bo Long, and Wen-Yun Yang
Show all 29 references
-
[9]
Sen Li, Fuyu Lv, Taiwei Jin, Guli Lin, Keping Yang, Xiaoyi Zeng, Xiao-Ming Wu, and Qianli Ma. 2021. Embedding-based Product Retrieval in Taobao Search. In Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining. 3181–3189
2021
-
[10]
Xiujun Li, Xi Yin, Chunyuan Li, Pengchuan Zhang, Xiaowei Hu, Lei Zhang, Lijuan Wang, Houdong Hu, Li Dong, Furu Wei, et al . 2020. Oscar: Object-semantics aligned pre-training for vision-language tasks. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August...
2020
-
[11]
Junyang Lin, An Yang, Yichang Zhang, Jie Liu, Jingren Zhou, and Hongxia Yang
-
[12]
Ilya Loshchilov and Frank Hutter. 2017. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101 (2017)
2017 arXiv
-
[13]
Jiasen Lu, Dhruv Batra, Devi Parikh, and Stefan Lee. 2019. Vilbert: Pretrain- ing task-agnostic visiolinguistic representations for vision-and-language tasks. Advances in neural information processing systems 32 (2019)
2019
-
[14]
Yiming Qiu, Chenyu Zhao, Han Zhang, Jingwei Zhuo, Tianhao Li, Xiaowei Zhang, Songlin Wang, Sulong Xu, Bo Long, and Wen-Yun Yang. 2022. Pre-training Tasks for User Intent Detection and Embedding Retrieval in E-commerce Search. arXiv preprint arXiv:2208.06150 (2022)
2022 arXiv
-
[15]
Parikshit Sondhi, Mohit Sharma, Pranam Kolari, and ChengXiang Zhai. 2018. A Taxonomy of Queries for E-commerce Search. In The 41st International ACM SIGIR Conference on Research & Development in Information Retrieval. 1245– 1248
2018
-
[16]
Daria Sorokina and Erick Cantu-Paz. 2016. Amazon search: The joy of ranking products. In Proceedings of the 39th International ACM SIGIR conference on Research and Development in Information Retrieval. 459–460
2016
-
[17]
Diane Tang, Ashish Agarwal, Deirdre O’Brien, and Mike Meyer. 2010. Over- lapping experiment infrastructure: More, better, faster experimentation. In Proceedings of the 16th ACM SIGKDD international conference on Knowledge discovery and data mining. 17–26
2010
-
[18]
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)
2017
-
[19]
Qi Wu, Damien Teney, Peng Wang, Chunhua Shen, Anthony Dick, and Anton Van Den Hengel. 2017. Visual question answering: A survey of methods and datasets. Computer Vision and Image Understanding 163 (2017), 21–40
2017
-
[20]
Xinlin Xia, Shang Wang, Han Zhang, Songlin Wang, Sulong Xu, Yun Xiao, Bo Long, and Wen-Yun Yang. 2021. SearchGCN: Powering Embedding Retrieval by Graph Convolution Networks for E-Commerce Search. In Proceedings of the 44th International ACM SIGIR Conference on Research and Dev...
2021
-
[21]
Fei Yu, Jiji Tang, Weichong Yin, Yu Sun, Hao Tian, Hua Wu, and Haifeng Wang
-
[22]
Han Zhang, Hongwei Shen, Yiming Qiu, Yunjiang Jiang, Songlin Wang, Sulong Xu, Yun Xiao, Bo Long, and Wen-Yun Yang. 2021. Joint Learning of Deep Retrieval Model and Product Quantization based Embedding Index. In Proceedings of the 44th International ACM SIGIR Conference on Rese...
2021
-
[23]
Han Zhang, Songlin Wang, Kang Zhang, Zhiling Tang, Yunjiang Jiang, Yun Xiao, Weipeng Yan, and Wen-Yun Yang. 2020. Towards personalized and semantic retrieval: An end-to-end solution for E-commerce search via embedding learning. In Proceedings of the 43rd International ACM SIGI...
2020
-
[24]
Han Zhu, Xiang Li, Pengye Zhang, Guozheng Li, Jie He, Han Li, and Kun Gai
-
[2018]
In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining
Learning tree-based deep model for recommender systems. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining. 1079–1088. A Presenter Profiles ZhiGong Zhou is a researcher in the Department of Search and Recommendation at JD.com. H...
-
[2019]
ACM Computing Surveys (CsUR) 51, 6 (2019), 1–36
A comprehensive survey of deep learning for image captioning. ACM Computing Surveys (CsUR) 51, 6 (2019), 1–36
2019
-
[2020]
arXiv preprint arXiv:2003.13198 (2020)
Interbert: Vision-and-language interaction for multi-modal pretraining. arXiv preprint arXiv:2003.13198 (2020)
2020 arXiv
-
[2021]
In Proceedings of the AAAI conference on artificial intelligence, Vol
Ernie-vil: Knowledge enhanced vision-language representations through scene graphs. In Proceedings of the AAAI conference on artificial intelligence, Vol. 35. 3208–3216
-
[2022]
arXiv preprint arXiv:2203.05082 (2022)
Givens Coordinate Descent Methods for Rotation Matrix Learning in Trainable Embedding Indexes. arXiv preprint arXiv:2203.05082 (2022)
2022 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.