How Recommend works
Recommendations rely on supervised machine learning models that are trained on your product data and user interactions. Recommend uses two different algorithm types: collaborative filtering and content-based filtering.- Collaborative filtering analyzes user events from the last 30-90 days.
Recommend creates a table of
userToken
andobjectID
which show how many times each user interacted with each record (object). Recommend then uses a collaborative filtering algorithm to find other records that are similar or frequently bought together:- Similar if the same set of users interacts with them.
- Frequently bought together if the same set of users bought them.
- Content-based filtering analyzes key attributes of items, such as their titles or descriptions, to find similarities.
Recommend models
Algolia Recommend builds models from your index and user events, based on supervised machine learning algorithms. Given an object ID (source item or viewed item), the trained model recommends other related object IDs (recommendations).Frequently Bought Together
The Frequently Bought Together model comes in two variants: relaxed and strict.Relaxed variant
The relaxed variant recommends items that are likely to be bought together. To find such items, it looks at conversion events, such as a purchase. If the same user buys two or more items on the same day, they’re considered as being bought together. The model uses this information, including historical purchases, to suggest items likely to go well together.Strict variant
The strict variant uses the historical purchases to only recommend items that were bought together in the past. To find such items, it looks at conversion events, such as a purchase. If the same user buys two or more items on the same day, they are considered as being bought together.Related Items
The Related Items model recommends items that are related to each other based on:- User interactions (click and conversion events) (collaborative filtering)
- Attributes (content-based filtering). With content-based filtering, you can show related content instead of related products.
Content-based filtering for Related Items
Content-based filtering creates even more relevant recommendations than relying on collaborative filtering alone. It lets you show recommendations when you don’t have enough click and conversion events. With content-based filtering, you can maximize your catalog exposure so that users get relevant recommendations even on items that aren’t popular. If you use content-based and collaborative filtering models, you’ll get a merged set of recommendations from both models.Trending Items and Trending Facet Values
The Frequently Bought Together model comes in two variants. The Trending Items model looks for items in your product catalog that have recently become popular (based on conversion events). This could be global for the entire catalog or within a specific facet (category), like winter sweaters. The Trending Facet Values model looks for facet values that recently increased in popularity. For example, you can recommend trending facet values within the “categories” facet. You can use both models together. For example, by showing trending categories on your home page in a carousel layout and in each carousel card, showing the trending items for each category.Looking Similar
The Looking Similar model recommends items that are related to each other based on the images provided in your index. This model can be set up in a few minutes as it doesn’t require any events.Events requirements for the models
To create relevant recommendations, each model needs a minimum number of events or items with attributes. If the data collected from the last 30 days isn’t enough, the Frequently Bought Together and Related Items models extend the collection period to 90 days. Similarly, the Trending Items and Trending Facet Values models initially gather data from the preceding 15 days and expand to the last 30 days if needed. Each model also has a maximum number of events it can use for training. If there are too many events or items with attributes, the model ignores them. Each model generates up to 30 recommendations.Model | Input type | Minimum number | Maximum number |
---|---|---|---|
Frequently Bought Together | Conversion events with two or more items | 1,000 | 3,000,000 |
Related Items | Click and conversion events | 10,000 | 3,000,000 |
Related Content | Items with values in their content-based attributes | 10 | 1,500,000 |
Trending Items | Conversion events | 250 | 3,000,000 |
Trending Facet Values | Conversion events | 250 | 3,000,000 |