
How Netflix integrates CLIP and MediaFM to deliver instant personalization for newly launched visual assets without historical interaction data
Netflix introduced MAPS to overcome the limitations of ID-based recommendation systems by embedding rich multimodal content directly into the asset representation. Leveraging CLIP for image-text mapping and MediaFM for fused video/audio/text representations, Netflix successfully solved the cold-start problem for newly launched media assets. This article walks through their unified model architecture, reward-based weighting, and cost-effective embedding validation proxy.
Highly recommended for recommendation system engineers in large-scale media or e-commerce platforms facing severe cold-start challenges. It provides excellent production-grade blueprints for model consolidation using unified embeddings and robust offline evaluation with Inverse Propensity Scoring (IPS).
At the cold-start phase when new titles or UI formats launch, traditional ID-based recommendation models fail to provide personalized recommendations for new assets due to the lack of historical user interaction data.
Netflix integrated pretrained CLIP image embeddings and MediaFM (its multimodal foundation model) to represent actual content, consolidated separate canvas models into a single unified model, and introduced reward-based weighting.
Consolidating five models into one and resolving cold-start issues yielded significant offline IPS performance lifts (including 5.69% on the short-panel canvas) and drove statistically significant lifts in core streaming and discovery metrics during online A/B testing.
Trade-off
To mitigate extreme data imbalance across canvases, complex reward-based weighting and Inverse Propensity Scoring (IPS) were required, which may introduce increased computational serving overhead for processing high-dimensional embeddings.
A contrastive image-text pre-training model developed by OpenAI that maps visual and textual modalities into a single shared multi-dimensional vector space.
Netflix's proprietary in-house multimodal foundation model that fuses visual, audio, and timed-text signals from video shots into a unified embedding.
A causal inference method that applies inverse probability weights to counteract bias in logged historical recommendation data.




