Recommender Systems

Can autoencoders solve the cold-start problem in recommendations?

Explores whether deep autoencoders combining collaborative filtering with side information can overcome the cold-start problem where new users or items lack rating history.

Note · 2026-05-03 · sourced from Recommenders Architectures
What breaks when specialized AI models reach real users?

Pure collaborative filtering relies entirely on rating history and fails on the cold-start problem: a new user or item has no ratings, so CF cannot estimate any predictions. Pure content-based filtering uses item or user side-information but suffers from over-specialization (recommending only similar items to ones the user already liked) and requires advanced processing of items.

Hybrid models combine both, but most existing approaches use linear methods (probabilistic matrix factorization with side information) and miss non-linear relationships in the data. Deep learning-based recommendation has shown that non-linear models can capture complex relationships across visual, textual, and contextual data — but most existing deep learning recommenders ignore side information entirely.

GHRS (Graph-based Hybrid Recommendation System) bridges these gaps. It constructs graph features (similarity graphs over users and items based on interactions) and uses autoencoders to learn non-linear representations integrating both rating history and side information (age, gender, occupation, genre). The cold-start problem is addressed because the side information feeds in even when ratings are absent, and the non-linear representations discover relationships linear methods miss.

The architectural lesson: hybridization isn't just about averaging CF and CBF predictions. It's about feeding both signals into a representation learner that can find non-linear interactions between them. Side information about a new user (age, occupation) plus the network structure of similar existing users with similar profiles produces a useful initial representation even before any rating is observed. Deep architectures with graph structure and side information together solve a problem (cold-start) that any single component handles poorly alone.


Source: Recommenders Architectures

Related concepts in this collection

Concept map
14 direct connections · 71 in 2-hop network ·medium cluster

Click a node to walk · click center to open · click Open full network for a force-directed map

your link semantically near linked from elsewhere
Original note title

graph-based hybrid recommendation combines collaborative filtering with side-information through autoencoders — addressing the cold-start problem CF alone cannot