Model Reference
Shaped offers a rich library of model policies that power retrieval, scoring, and ranking within your recommendation and search systems. These policies range from classic collaborative filtering techniques and rule-based heuristics to state-of-the-art deep learning architectures. Explore the available policies below to understand their capabilities and how to configure them for optimal performance.
Plan Availabilityโ
Shaped offers models across different plan tiers:
- Free Plan: Includes foundational models like ALS, ELSA, Item2Vec, and Rising Popularity
- Standard Plan: Includes all Free Plan models plus advanced models like SASRec, Two-Tower, BERT4Rec, GBDT, and more
Individual model cards below indicate their plan availability.
Model types in Shapedโ
Shaped systems typically use a combination of:
- HuggingFace embedding models (zero-shot): Pre-trained encoders used to generate embeddings without training on your interaction data. These are commonly used for vector search retrieval (semantic text search, similarity, content filtering) and as feature inputs to downstream trained models.
- Trained embedding models: Models trained or fine-tuned on your data to learn user and item representations (e.g., matrix factorization, two-tower retrieval, sequential models). These are often used for candidate retrieval, similarity, and as features for scoring.
- Scoring models: Point-wise models used in the scoring stage to produce a relevance score for a (user, item) pair, typically using rich feature sets.
Trained embedding and scoring models are trained on the data in your engine and retrained continuously based on your configured training schedule.
Embedding modelsโ
Embedding models are trained to represent items and users in vector space.
For pre-trained, zero-shot embedding generation, see HuggingFace embedding models.
๐งฉ ALS
Matrix Factorization (Alternating Least Squares) for implicit feedback collaborative filtering.
๐งฉ SVD (retired)
Retired: no longer accepted via the V2 API. Matrix Factorization (Singular Value Decomposition inspired) for collaborative filtering, often including biases.
๐ก ELSA
Scalable Linear Shallow Autoencoder for implicit feedback recommendations using factorized structure.
โจ EASE
Embarrassingly Shallow Autoencoder with a simple closed-form solution for item collaborative filtering.
๐ผ Two-Tower
Scalable deep learning model with separate user and item networks for efficient candidate retrieval.
๐ beeFormer
Fine-tunes sentence Transformers on interaction data, bridging semantic and behavioral signals.
๐ Item2Vec
Learns item embeddings based on co-occurrence within interaction sequences (Word2Vec adaptation).
โก๏ธ SASRec
Self-Attentive Sequential Recommendation model using Transformers for next-item prediction.
โ๏ธ BERT4Rec (retired)
Retired: no longer accepted via the V2 API. Bidirectional Transformer (BERT) for sequential recommendation via masked item prediction.
โ GSASRec (retired)
Retired: no longer accepted via the V2 API. Improved SASRec (Generalized Self-Attentive) reducing overconfidence in sequential models.