REVIEW 3 major objections 5 minor 112 references
HyCoRec argues that modeling five preference aspects—items, entities, words, reviews, and knowledge—simultaneously can reduce the rich-get-richer effect in conversational recommendation while improving both accuracy and response diversity.
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-01 17:51 UTC pith:J2ZQ5ZFH
load-bearing objection This is a duplicate of an already-published ACL 2024 paper, and the core dynamic Matthew-effect claim is never actually tested; the experiments only show static list-diversity metrics. the 3 major comments →
HyCoRec: Hypergraph-Enhanced Multi-Preference Learning for Alleviating Matthew Effect in Conversational Recommendation
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 multi-aspect preference fusion can improve accuracy and diversity together in a conversational recommender. HyCoRec's five preference vectors—item, entity, word, review, and knowledge—are pooled into a single fused preference; the recommendation head scores all candidate items against it, and the decoder attends to it when generating replies. In experiments on REDIAL and TG-REDIAL, the model outperforms all compared baselines on Recall, MRR, and NDCG, and on Dist-2/3/4 response diversity, while showing higher Coverage@k and lower Isolation-Index.
What carries the argument
The central machinery is the hypergraph: a graph structure whose edges can join more than two nodes at once, letting a single relation capture multi-factor preferences such as genre, brand, and style simultaneously. HyCoRec builds one hypergraph over items from conversation sessions, one over entities in a knowledge graph with k-hop neighbors, and one over words in a lexical knowledge graph; each hypergraph is passed through multi-head hypergraph convolution to produce an aspect preference vector. Reviews are encoded with a transformer and knowledge entities with a relational graph network, and the five preference vectors are pooled into a fused preference that the recommendation head scores
Load-bearing premise
The load-bearing assumption is that static diversity metrics like Coverage@k and Isolation-Index on a fixed test set can stand in for evidence that the Matthew effect is alleviated in a dynamic user-system feedback loop, since the paper never simulates or measures the loop it says amplifies the effect.
What would settle it
Run HyCoRec and a baseline in a repeated-interaction simulation: at each turn, recommend items, let the user accept a subset, add accepted items to the conversation history, and re-recommend. If HyCoRec's coverage advantage over the baseline shrinks or disappears as turns accumulate, the claim that it alleviates the dynamically amplified Matthew effect is falsified.
If this is right
- If HyCoRec's results hold, a conversational recommender can gain accuracy and diversity from the same fused preference representation, challenging the usual accuracy-diversity trade-off.
- Higher Coverage@k and lower Isolation-Index mean the model's top-k lists spread over a wider portion of the catalog, directly countering overexposure of popular items.
- Better Dist-n scores in generated responses imply the dialogue itself can reflect long-tail interests, which may encourage users to mention niche items in later turns.
- Ablations show each hypergraph aspect is load-bearing: dropping any one of item, entity, or word hypergraphs, or item reviews, lowers recommendation quality.
Where Pith is reading between the lines
- The dynamic part of the Matthew-effect story is not directly tested. A natural follow-up is a rollout experiment where recommended items are fed back into the conversation for several rounds; if HyCoRec's long-tail advantage persists over rounds, the dynamic claim would be confirmed.
- The paper itself notes that it does not build a review hypergraph despite modeling review-aspect preference; a review-based hypergraph is an obvious extension that might further widen coverage.
- Because the evaluation of 'alleviating Matthew effect' relies on static diversity metrics on a fixed test set, the results are best read as evidence of improved long-tail coverage in a snapshot, not of changed long-run consumption patterns; user studies or longitudinal logs would be needed to connect coverage to escape from filter bubbles.
- The approach suggests a general design: any additional preference source—social relations, timestamps, or multimodal signals—could be plugged in as another hypergraph, making it a template for fairness-oriented conversational recommendation.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes HyCoRec, a conversational recommendation framework that learns item-, entity-, word-, review-, and knowledge-aspect preferences through three hypergraph convolutions, a review Transformer, and RGCN encoding, and fuses them for both item prediction and response generation. The stated purpose is to alleviate the Matthew effect, which the authors argue is amplified by dynamic user–system feedback. Experiments on REDIAL and TG-REDIAL compare against a range of baselines and report recommendation metrics (Recall@K, MRR@K, NDCG@K), conversation diversity (Dist-n), coverage/isolation diversity metrics, ablations, hyperparameter plots, and qualitative case studies. The paper claims consistent state-of-the-art results and provides a code link.
Significance. If the empirical claims were reliable, the work would be relevant: it combines multiple preference signals in a hypergraph architecture, targets an important fairness-related problem, and provides code and public-benchmark evaluation. The ablation study shows that each component contributes, and the proposed model does improve over most baselines on most recommendation metrics in Table 1. However, the core contribution—alleviating the dynamic Matthew effect—is not directly evaluated: the diversity metrics are static snapshots, and the paper contains direct numerical contradictions in the conversational and diversity tables. Additionally, the claimed novelty is undercut by an identical prior publication listed in the references. These issues prevent me from recommending acceptance.
major comments (3)
- [§4.2–4.3, Tables 1–2] Tables 1 and 2 contain direct counterexamples to the statement that HyCoRec outperforms all baselines. In Table 1, TG-REDIAL N@50 is 0.0245 for HyCoRec versus 0.0256 for MHIM; in Table 2, REDIAL Dist-4 is 0.9523 versus 0.9629 for MHIM. Both tables carry a footnote claiming p<0.05 over all baselines. A lower point estimate cannot be reconciled with a claim of significant improvement over that baseline without further explanation. Please correct the tables, the significance footnote, or the surrounding narrative.
- [§4.4, Table 3] The text claims that Coverage@5 on REDIAL improves by 63.75% over MHIM, but the table gives 0.1168 vs 0.1098, which is about 6.38%. More importantly, Coverage@k and Isolation-Index are static top-k list-diversity metrics computed on a fixed test set; they contain no repeated interaction, exposure/feedback loop, or time axis. Sections 1, 3, and 5 state that the Matthew effect is 'increasingly amplified' in dynamic user-system interaction, but no temporal simulation, longitudinal split, or online study is reported anywhere. Thus RQ3 does not test the manuscript's central claim of alleviating the Matthew effect over time.
- [References (Zheng et al., 2024e)] The reference list contains 'HyCoRec: Hypergraph-enhanced multi-preference learning for alleviating matthew effect in conversational recommendation' (ACL 2024, pages 2526–2537) with the same title and author list as this submission. The manuscript does not identify this prior publication or state what is new relative to it, and Section 1 still claims this is 'the first work' on multi-aspect preference for alleviating the Matthew effect in CRS. This is a load-bearing novelty problem: the contribution cannot be assessed without knowing the relationship to the prior paper, and it raises a dual-publication concern.
minor comments (5)
- [§4.4] 'Cover@5' should be 'Coverage@5' to match the table. The percentage 63.75% is arithmetically inconsistent with the reported values; the correct value is approximately 6.38%.
- [§3.2.1, §2.1] Typos: 'hyperege' should be 'hyperedge', 'ConcetNet' should be 'ConceptNet', 'recomemnder' should be 'recommender'.
- [§3.2.2, Eq. (16)] Equation (16) writes MHA([P_c;P_h;P_h]), which appears to have a single argument; clarify whether this is a self-attention over the concatenated vector or should be MHA(P_c, P_h, P_h). Similarly, in Eq. (13) the operation Pooling(Ph) after concatenation is not defined.
- [§6] The Limitations section says the current version does not include a review-based hypergraph, but the abstract and model description emphasize review-aspect preference. Clarify that review information is encoded by the Transformer rather than by a hypergraph, and adjust the abstract if necessary.
- [§4.6, Fig. 2] The hyperparameter analysis is qualitative and Figure 2 lacks axis labels and error bars. Reporting exact values and variance would strengthen the claims.
Circularity Check
No circular derivation found: HyCoRec's predictions are evaluated on public test sets against external baselines; the dynamic Matthew-effect gap and heavy self-citation are correctness/provenance concerns, not tautological reductions.
full rationale
The claimed derivation chain is a standard supervised model: multi-aspect preference vectors (Eqs. 5-12) are fused (Eqs. 13, 16) and trained with cross-entropy (Eqs. 15, 19) to predict held-out items and utterances on REDIAL and TG-REDIAL. No parameter is fitted to the diversity metrics C@k/Iso-Index and then reported as a prediction; Table 3 is an evaluation of the already-trained model against external baselines. The hypergraph convolution is attributed to Bai et al. (2021), the Transformer/attention machinery to Vaswani et al. (2017), and the RGCN/biases to Shang et al. (2023), none of which is an unverified self-citation chain used to prove the central result. Section 4.4's Coverage@k and Isolation-Index are static list metrics, so the paper's stronger temporal claim that the Matthew effect is 'increasingly amplified' via the user-system feedback loop is not directly tested; that is an evidential/validity gap rather than circularity, since the metrics are not inputs to the model and no equation reduces the Matthew-effect claim to them. The reference list contains a prior ACL 2024 HyCoRec paper with the same title/authors and several closely related self-cited hypergraph CRS works, which undermines the 'first work' novelty statement, but the benchmark comparisons would stand independently of those citations, and no load-bearing argument relies on them. Accordingly, no circular step meeting the quoted-reduction standard is present.
Axiom & Free-Parameter Ledger
free parameters (6)
- hop count k for entity/word hypergraph construction =
not reported
- number of hypergraph convolution layers L =
2 (optimal)
- attention head counts m, j, f, g =
not reported
- balance beta in Eq. (17) =
not reported
- embedding dimension =
not reported
- multi-task loss weights for L_r and L_c =
not reported
axioms (5)
- standard math Hypergraph convolution operator from Bai et al. (2021) is valid and sufficiently expressive.
- domain assumption Users with narrow preferences are more susceptible to the Matthew effect.
- domain assumption The dynamic user-system feedback loop amplifies the Matthew effect.
- domain assumption DBpedia and ConceptNet alignments adequately cover conversational entities and words.
- ad hoc to paper The five preference aspects (item, entity, word, review, knowledge) are sufficient for alleviating the Matthew effect.
Cite this review
Pith. "Pith review of HyCoRec: Hypergraph-Enhanced Multi-Preference Learning for Alleviating Matthew Effect in Conversational Recommendation." pith.science (2026). https://pith.science/paper/J2ZQ5ZFH
@misc{pith2026260717461,
author = {Pith},
title = {Pith review of: HyCoRec: Hypergraph-Enhanced Multi-Preference Learning for Alleviating Matthew Effect in Conversational Recommendation},
year = {2026},
howpublished = {\url{https://pith.science/paper/J2ZQ5ZFH}},
note = {Machine review of arXiv:2607.17461}
}
read the original abstract
The Matthew effect is a notorious issue in Recommender Systems (RSs), \emph{i.e.}, the rich get richer and the poor get poorer, wherein popular items are overexposed while less popular ones are regularly ignored. Most methods examine Matthew effect in static or nearly-static recommendation scenarios. However, the Matthew effect will be increasingly amplified when the user interacts with the system over time. To address these issues, we propose a novel paradigm, Hypergraph-Enhanced Multi-Preference Learning for Alleviating Matthew Effect in Conversational Recommendation (HyCoRec), which aims to alleviate the Matthew effect in conversational recommendation. Concretely, HyCoRec devotes to alleviate the Matthew effect by learning multi-aspect preferences, \emph{i.e.}, item-, entity-, word-, review-, and knowledge-aspect preferences, to effectively generate responses in the conversational task and accurately predict items in the recommendation task when the user chats with the system over time. Extensive experiments conducted on two benchmarks validate that HyCoRec achieves new state-of-the-art performance and the superior of alleviating Matthew effect. Our code is available at https://github.com/zysensmile/HyCoRec.
Figures
Reference graph
Works this paper leans on
-
[1]
Empirical Methods in Natural Language Processing (Demonstrations) , pages=
Openke: An open toolkit for knowledge embedding , author=. Empirical Methods in Natural Language Processing (Demonstrations) , pages=
-
[2]
Advances in Neural Information Processing Systems , volume=
Translating embeddings for modeling multi-relational data , author=. Advances in Neural Information Processing Systems , volume=
-
[3]
IEEE Transactions on Information Theory , volume=
On the role of dynamic programming in statistical communication theory , author=. IEEE Transactions on Information Theory , volume=. 1957 , publisher=
1957
-
[4]
Conference on Research and Development in Information Retrieval , pages=
Interactive recommender system via knowledge graph-enhanced reinforcement learning , author=. Conference on Research and Development in Information Retrieval , pages=
-
[5]
Association for the Advancement of Artificial Intelligence , volume=
Deep reinforcement learning with double q-learning , author=. Association for the Advancement of Artificial Intelligence , volume=
-
[6]
The Semantic Web: 15th International Conference , pages=
Modeling relational data with graph convolutional networks , author=. The Semantic Web: 15th International Conference , pages=. 2018 , organization=
2018
-
[7]
Advances in Neural Information Processing Systems , volume=
Iterative deep graph learning for graph neural networks: Better and robust node embeddings , author=. Advances in Neural Information Processing Systems , volume=
-
[8]
arXiv preprint arXiv:1908.04942 , year=
Reinforcement learning based graph-to-sequence model for natural question generation , author=. arXiv preprint arXiv:1908.04942 , year=
Pith/arXiv arXiv 1908
-
[9]
arXiv preprint arXiv:1609.02907 , year=
Semi-supervised classification with graph convolutional networks , author=. arXiv preprint arXiv:1609.02907 , year=
-
[10]
The Web Conference , pages=
Conversational contextual bandit: Algorithm and application , author=. The Web Conference , pages=
-
[11]
ACM Transactions on Information Systems , volume=
Seamlessly unifying attributes and items: Conversational recommendation for cold-start users , author=. ACM Transactions on Information Systems , volume=. 2021 , publisher=
2021
-
[12]
arXiv preprint arXiv:2010.04125 , year=
Towards topic-guided conversational recommender system , author=. arXiv preprint arXiv:2010.04125 , year=
Pith/arXiv arXiv 2010
-
[13]
International Conference on Knowledge Discovery and Data Mining , pages=
Improving conversational recommender systems via knowledge graph based semantic fusion , author=. International Conference on Knowledge Discovery and Data Mining , pages=
-
[14]
arXiv preprint arXiv:2005.03954 , year=
Towards conversational recommendation over multi-type dialogs , author=. arXiv preprint arXiv:2005.03954 , year=
Pith/arXiv arXiv 2005
-
[15]
Conference on Research and Development in Information Retrieval , pages=
Towards question-based recommender systems , author=. Conference on Research and Development in Information Retrieval , pages=
-
[16]
Conference on Research and Development in Information Retrieval , pages=
Conversational recommendation: Formulation, methods, and evaluation , author=. Conference on Research and Development in Information Retrieval , pages=
-
[17]
Conference on Information and Knowledge Management , pages=
Towards conversational search and recommendation: System ask, user respond , author=. Conference on Information and Knowledge Management , pages=
-
[18]
International Conference on Knowledge Discovery and Data Mining , pages=
A visual dialog augmented interactive recommender system , author=. International Conference on Knowledge Discovery and Data Mining , pages=
-
[19]
International Conference on Multimedia , pages=
Knowledge-aware multimodal dialogue systems , author=. International Conference on Multimedia , pages=
-
[20]
Advances in Neural Information Processing Systems , volume=
Towards deep conversational recommendations , author=. Advances in Neural Information Processing Systems , volume=
-
[21]
International Conference on Knowledge Discovery and Data Mining , pages=
Towards conversational recommender systems , author=. International Conference on Knowledge Discovery and Data Mining , pages=
-
[22]
International Conference on Knowledge Discovery and Data Mining , pages=
Q&R: A two-stage approach toward interactive recommendation , author=. International Conference on Knowledge Discovery and Data Mining , pages=
-
[23]
arXiv preprint arXiv:1908.05391 , year=
Towards knowledge-based recommender dialog system , author=. arXiv preprint arXiv:1908.05391 , year=
Pith/arXiv arXiv 1908
-
[24]
The Web Conference , pages=
Multiple Choice Questions based Multi-Interest Policy Learning for Conversational Recommendation , author=. The Web Conference , pages=
-
[25]
Conference on Research and Development in Information Retrieval , pages=
Learning to Infer User Implicit Preference in Conversational Recommendation , author=. Conference on Research and Development in Information Retrieval , pages=
-
[26]
Conference on Research and Development in Information Retrieval , pages=
Conversational Recommendation via Hierarchical Information Modeling , author=. Conference on Research and Development in Information Retrieval , pages=
-
[27]
Conference on Research and Development in Information Retrieval , pages=
Unified conversational recommendation policy learning via graph-based reinforcement learning , author=. Conference on Research and Development in Information Retrieval , pages=
-
[28]
Conference on Research and Development in Information Retrieval , pages=
Learning to ask appropriate questions in conversational recommendation , author=. Conference on Research and Development in Information Retrieval , pages=
-
[29]
Web Search and Data Mining , pages=
Adapting user preference to online feedback in conversational recommendation , author=. Web Search and Data Mining , pages=
-
[30]
International Conference on Knowledge Discovery and Data Mining , pages=
Interactive path reasoning on graph for conversational recommendation , author=. International Conference on Knowledge Discovery and Data Mining , pages=
-
[31]
Web Search and Data Mining , pages=
Estimation-action-reflection: Towards deep interaction between conversational and recommender systems , author=. Web Search and Data Mining , pages=
-
[32]
Conversational recommender system , author=
-
[33]
2021 , publisher=
Advances and challenges in conversational recommender systems: A survey , author=. 2021 , publisher=
2021
-
[34]
Hongshen Chen and Xiaorui Liu and Dawei Yin and Jiliang Tang , title =
-
[35]
Findings of the Association for Computational Linguistics , pages =
Yu Lu and Junwei Bao and Yan Song and Zichen Ma and Shuguang Cui and Youzheng Wu and Xiaodong He , title =. Findings of the Association for Computational Linguistics , pages =
-
[36]
Web Search and Data Mining , pages =
Yuanhang Zhou and Kun Zhou and Wayne Xin Zhao and Cheng Wang and Peng Jiang and He Hu , title =. Web Search and Data Mining , pages =
-
[37]
International Conference on Knowledge Discovery and Data Mining , pages =
Konstantina Christakopoulou and Filip Radlinski and Katja Hofmann , title =. International Conference on Knowledge Discovery and Data Mining , pages =
-
[38]
Conference on Research
Yueming Sun and Yi Zhang , title =. Conference on Research
-
[39]
Leveraging Historical Interaction Data for Improving Conversational Recommender System , booktitle =
Kun Zhou and Wayne Xin Zhao and Hui Wang and Sirui Wang and Fuzheng Zhang and Zhongyuan Wang and Ji. Leveraging Historical Interaction Data for Improving Conversational Recommender System , booktitle =
-
[40]
The Web Conference , pages =
Yiming Zhang and Lingfei Wu and Qi Shen and Yitong Pang and Zhihua Wei and Fangli Xu and Bo Long and Jian Pei , title =. The Web Conference , pages =
-
[41]
Empirical Methods in Natural Language Processing , pages =
Shirley Anugrah Hayati and Dongyeop Kang and Qingxiaoyang Zhu and Weiyan Shi and Zhou Yu , title =. Empirical Methods in Natural Language Processing , pages =
-
[42]
Advances in Neural Information Processing Systems , pages =
Raymond Li and Samira Ebrahimi Kahou and Hannes Schulz and Vincent Michalski and Laurent Charlin and Chris Pal , title =. Advances in Neural Information Processing Systems , pages =
-
[43]
Towards Topic-Guided Conversational Recommender System , booktitle =
Kun Zhou and Yuanhang Zhou and Wayne Xin Zhao and Xiaoke Wang and Ji. Towards Topic-Guided Conversational Recommender System , booktitle =
-
[44]
Conference on Research and Development in Information Retrieval , pages =
Zhihui Xie and Tong Yu and Canzhe Zhao and Shuai Li , title =. Conference on Research and Development in Information Retrieval , pages =
-
[45]
Association for Computational Linguistics , pages =
Xiexiong Lin and Weiyu Jian and Jianshan He and Taifeng Wang and Wei Chu , title =. Association for Computational Linguistics , pages =
-
[46]
Web Search and Data Mining , pages =
Xiaoyu Zhang and Xin Xin and Dongdong Li and Wenxuan Liu and Pengjie Ren and Zhumin Chen and Jun Ma and Zhaochun Ren , title =. Web Search and Data Mining , pages =
-
[47]
Conference on Research and Development in Information Retrieval , pages =
Shuokai Li and Ruobing Xie and Yongchun Zhu and Xiang Ao and Fuzhen Zhuang and Qing He , title =. Conference on Research and Development in Information Retrieval , pages =
-
[48]
Yingxu Wang and Xiaoru Chen and Jinyuan Fang and Zaiqiao Meng and Shangsong Liang , title =
-
[49]
Association for the Advancement of Artificial Intelligence , pages =
Filip Radlinski and Craig Boutilier and Deepak Ramachandran and Ivan Vendrov , title =. Association for the Advancement of Artificial Intelligence , pages =
-
[50]
DBpedia:
S. DBpedia:. International Semantic Web Conference/Asian Semantic Web Conference , volume =
-
[51]
Conference on Research and Development in Information Retrieval , pages =
Yang Deng and Yaliang Li and Fei Sun and Bolin Ding and Wai Lam , title =. Conference on Research and Development in Information Retrieval , pages =
-
[52]
Pointing the Unknown Words , booktitle =
-
[53]
Gomez and Lukasz Kaiser and Illia Polosukhin , title =
Ashish Vaswani and Noam Shazeer and Niki Parmar and Jakob Uszkoreit and Llion Jones and Aidan N. Gomez and Lukasz Kaiser and Illia Polosukhin , title =. Advances in Neural Information Processing Systems , pages =
-
[54]
CoRR , volume =
Tong Zhang and Yong Liu and Peixiang Zhong and Chen Zhang and Hao Wang and Chunyan Miao , title =. CoRR , volume =
-
[55]
Conference on Recommender Systems , pages =
Harald Steck , title =. Conference on Recommender Systems , pages =
-
[56]
ACM Transactions on Information Systems , year =
Chongming Gao and Wenqiang Lei and Jiawei Chen and Shiqi Wang and Xiangnan He and Shijun Li and Biao Li and Yuan Zhang and Peng Jiang , title =. ACM Transactions on Information Systems , year =
-
[57]
ACM on Human-Computer Interaction , volume =
Eslam Hussein and Prerna Juneja and Tanushree Mitra , title =. ACM on Human-Computer Interaction , volume =
-
[58]
Shapiro and Mustafa Bilgic , title =
Ping Liu and Karthik Shivaram and Aron Culotta and Matthew A. Shapiro and Mustafa Bilgic , title =. The Web Conference , pages =
-
[59]
Nguyen and Pik
Tien T. Nguyen and Pik. Exploring the filter bubble: the effect of using recommender systems on content diversity , booktitle =
-
[60]
Auditing radicalization pathways on YouTube , booktitle =
Manoel Horta Ribeiro and Raphael Ottoni and Robert West and Virg. Auditing radicalization pathways on YouTube , booktitle =
-
[61]
Conference on User Modeling, Adaptation, and Personalization , pages =
Larissa Spinelli and Mark Crovella , title =. Conference on User Modeling, Adaptation, and Personalization , pages =
-
[62]
An Audit of Misinformation Filter Bubbles on YouTube: Bubble Bursting and Recent Behavior Changes , booktitle =
Mat. An Audit of Misinformation Filter Bubbles on YouTube: Bubble Bursting and Recent Behavior Changes , booktitle =
-
[63]
Association for the Advancement of Artificial Intelligence , pages =
Libo Qin and Zhouyang Li and Qiying Yu and Lehan Wang and Wanxiang Che , title =. Association for the Advancement of Artificial Intelligence , pages =
-
[64]
Association for the Advancement of Artificial Intelligence , pages =
Shimin Li and Qinyuan Cheng and Linyang Li and Xipeng Qiu , title =. Association for the Advancement of Artificial Intelligence , pages =
-
[65]
Association for the Advancement of Artificial Intelligence , pages =
Kshitij Mishra and Priyanshu Priya and Asif Ekbal , title =. Association for the Advancement of Artificial Intelligence , pages =
-
[66]
Alleviating the Long-Tail Problem in Conversational Recommender Systems , booktitle =
Zhipeng Zhao and Kun Zhou and Xiaolei Wang and Wayne Xin Zhao and Fan Pan and Zhao Cao and Ji. Alleviating the Long-Tail Problem in Conversational Recommender Systems , booktitle =
-
[67]
Epure and Romain Hennequin , title =
Elena V. Epure and Romain Hennequin , title =. European Chapter of the Association for Computational Linguistics , pages =
-
[68]
Conversational Agents for Mental Health and Well-being: Discovering Design Recommendations Using Text Mining , booktitle =
Abdullah Wahbeh and Mohammad Al. Conversational Agents for Mental Health and Well-being: Discovering Design Recommendations Using Text Mining , booktitle =
-
[69]
Conference on Research and Development in Information Retrieval , pages =
Yuanxing Liu and Weinan Zhang and Baohua Dong and Yan Fan and Hang Wang and Fan Feng and Yifan Chen and Ziyu Zhuang and Hengbin Cui and Yongbin Li and Wanxiang Che , title =. Conference on Research and Development in Information Retrieval , pages =
-
[70]
Association for the Advancement of Artificial Intelligence , pages =
Robyn Speer and Joshua Chin and Catherine Havasi , title =. Association for the Advancement of Artificial Intelligence , pages =
-
[71]
Empirical Methods in Natural Language Processing (Demonstrations) , pages =
Yoon Kim , title =. Empirical Methods in Natural Language Processing (Demonstrations) , pages =
-
[72]
User-controllable Recommendation Against Filter Bubbles , booktitle =
Wenjie Wang and Fuli Feng and Liqiang Nie and Tat. User-controllable Recommendation Against Filter Bubbles , booktitle =
-
[73]
The Web Conference , pages =
Zhenyang Li and Yancheng Dong and Chen Gao and Yizhou Zhao and Dong Li and Jianye Hao and Kai Zhang and Yong Li and Zhi Wang , title =. The Web Conference , pages =
-
[74]
Examining the Matthew Effect on YouTube Recommendation System , year=
Liu, Ying Chieh and Huang, Min Qi , booktitle=. Examining the Matthew Effect on YouTube Recommendation System , year=
-
[75]
Conference on Research and Development in Information Retrieval , pages =
Chongming Gao and Kexin Huang and Jiawei Chen and Yuan Zhang and Biao Li and Peng Jiang and Shiqi Wang and Zhong Zhang and Xiangnan He , title =. Conference on Research and Development in Information Retrieval , pages =
-
[76]
The Web Conference , pages =
Ashton Anderson and Lucas Maystre and Ian Anderson and Rishabh Mehrotra and Mounia Lalmas , title =. The Web Conference , pages =
-
[77]
Conference on Web Search and Data Mining , pages =
Christian Hansen and Rishabh Mehrotra and Casper Hansen and Brian Brost and Lucas Maystre and Mounia Lalmas , title =. Conference on Web Search and Data Mining , pages =
-
[78]
Conference on Research and Development in Information Retrieval , pages =
Yile Liang and Tieyun Qian and Qing Li and Hongzhi Yin , title =. Conference on Research and Development in Information Retrieval , pages =
-
[79]
The Web Conference , pages =
Yu Zheng and Chen Gao and Liang Chen and Depeng Jin and Yong Li , title =. The Web Conference , pages =
-
[80]
The Web Conference , pages =
Yu Zheng and Chen Gao and Xiang Li and Xiangnan He and Yong Li and Depeng Jin , title =. The Web Conference , pages =
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.