TLDR: IADSR is a new framework that improves sequential recommendation by effectively identifying and removing noisy user interactions. It combines traditional collaborative filtering with semantic understanding from Large Language Models (LLMs) to better distinguish genuine preferences from accidental behaviors, especially for less popular “cold items.” This two-stage approach, involving dual representation learning and cross-modal interest alignment, leads to more accurate and diverse recommendations, validated across multiple datasets.
In the bustling world of digital platforms, recommender systems have become essential tools, guiding us through vast amounts of information, from news articles to entertainment and social media. Among these, sequential recommendation systems are particularly adept at understanding our evolving tastes by analyzing the order of our past interactions. Imagine a system that learns your movie preferences not just from what you’ve watched, but the order in which you watched them, predicting what you’d like to see next.
However, these sophisticated systems face a significant hurdle: noise. Not all interactions truly reflect our genuine interests. An accidental click, a brief exploratory browse, or an item purchased as a gift might mislead the system, causing it to misinterpret our true preferences. This “noise” can propagate through the recommendation process, ultimately degrading the quality of suggestions we receive.
Traditional approaches to denoising sequential recommendations primarily rely on “collaborative information”—patterns derived from how many users interact with certain items. While effective to some extent, these methods often struggle with “cold items”—products or content with very few interactions. For these items, relying solely on collaborative data can lead to an “over-denoising” problem, where potentially relevant but less popular items are mistakenly identified as noise and removed, limiting the diversity and accuracy of recommendations.
Introducing IADSR: A Dual Approach to Cleaner Recommendations
To overcome these limitations, researchers have proposed a novel framework called Interest Alignment for Denoising Sequential Recommendation (IADSR). This innovative approach integrates both collaborative and semantic information to provide a more comprehensive understanding of user preferences. Semantic information, in this context, refers to the meaning and context derived from an item’s textual description, something that Large Language Models (LLMs) excel at understanding.
IADSR operates in two distinct stages, working in harmony to refine user interaction sequences:
Stage 1: Dual Representation Learning
In the first stage, IADSR creates two different types of “embeddings” (numerical representations) for each item. One set of embeddings captures the traditional collaborative patterns from a sequential recommendation model, based on item IDs and user interactions. The other set captures the rich semantic meaning of items, generated by an LLM (specifically, LLM2Vec) from their textual descriptions, such as product names. This dual approach ensures that both behavioral patterns and content understanding are considered.
Stage 2: Cross-Modal Alignment and Noise Identification
The second stage is where the magic of denoising happens. IADSR aligns these collaborative and semantic embeddings, recognizing that a user’s underlying interests should be consistent across both modalities. It does this by considering both “long-term interests” (a holistic view of a user’s entire interaction history) and “short-term interests” (evolving preferences at different points in time). By comparing the consistency between these different interest representations across modalities, the system can identify interactions that don’t align, flagging them as potential noise. A clever Gumbel-Sigmoid function then converts these consistency scores into binary decisions: keep or filter out the interaction.
Furthermore, IADSR includes a “sequence reconstruction” mechanism. This is crucial to prevent over-denoising, especially for cold items. It ensures that while noise is removed, essential information reflecting genuine user preferences is preserved, maintaining a balance between filtering and retaining valuable data.
Also Read:
- Smart Recommendations: Dynamically Adjusting for Niche User Preferences
- AgenticRAG: Smarter, More Transparent Recommendations Without Specific Training
Why IADSR Stands Out
The key strength of IADSR lies in its ability to leverage the powerful semantic understanding of Large Language Models without requiring costly fine-tuning of the LLMs themselves. This makes it highly efficient and adaptable. Moreover, the framework is designed to be compatible with various existing sequential recommendation models, meaning it can enhance many different systems already in use.
Extensive experiments conducted on four public datasets, including Amazon Beauty, Sports, Toys, and MovieLens-100K, have consistently demonstrated IADSR’s effectiveness. It significantly outperforms state-of-the-art denoising methods, showing robust and versatile performance. For instance, on the Beauty dataset with the GRU4Rec model, IADSR showed an average improvement of 24.6% across various evaluation metrics compared to the second-best method.
A detailed analysis confirmed that all components of IADSR contribute to its success, particularly the alignment of semantic and collaborative information and the combination of long-term and short-term interest signals. Qualitative case studies further illustrate how IADSR can precisely filter out irrelevant items while retaining relevant “cold items,” showcasing its ability to balance recommendation diversity with accurate noise removal.
This research, titled Empowering Denoising Sequential Recommendation with Large Language Model Embeddings, was authored by Tongzhou Wu, Yuhao Wang, Maolin Wang, Chi Zhang, and Xiangyu Zhao. It represents a significant step forward in creating more accurate, reliable, and diverse recommender systems by intelligently filtering out the noise that often clouds our digital experiences.


