Skip to content

Commit d5f55f2

Browse files
authored
Merge pull request #7175 from segmentio/recommended-items
Recommended Items GA [DOC-1007]
2 parents 1997777 + 41f67dc commit d5f55f2

File tree

4 files changed

+80
-0
lines changed

4 files changed

+80
-0
lines changed

src/_data/sidenav/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,8 @@ sections:
389389
title: Custom Traits
390390
- path: '/unify/traits/sql-traits'
391391
title: SQL Traits
392+
- path: '/unify/traits/recommended-items'
393+
title: Recommended Items
392394
- path: /unify/profile-api
393395
title: Profile API
394396
- path: /unify/debugger

src/unify/Traits/computed-traits.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Segment currently supports the following types of computed traits:
2525
- [Last](#last)
2626
- [Unique List](#unique-list)
2727
- [Unique List Count](#unique-list-count)
28+
- [Predictions](/docs/unify/traits/predictions/)
29+
- [Recommended Items](/docs/unify/traits/recommended-items/)
2830
- [Conditions](#conditions)
2931
- [Connecting your Computed Trait to a Destination](#connecting-your-computed-trait-to-a-destination)
3032
- [Editing Realtime Traits](#editing-realtime-traits)

src/unify/Traits/recommended-items.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
---
2+
title: Recommended Items
3+
plan: unify-plus
4+
---
5+
6+
With Recommended Items, you can add personalized item recommendations as a [computed trait](/docs/unify/traits/computed-traits/) to each user profile.
7+
8+
Based on a user's past interactions, this trait generates a list of up to 5 items, like products, articles, or songs, that each user is most likely to engage with.
9+
10+
Segment designed Recommended Items for cases where you want to personalize experiences, like email content, in-app recommendations, or website suggestions, to fit each user's unique preferences.
11+
12+
On this page, you’ll learn how Recommended Items works, how to create a Recommended Item trait, and best practices to get the most out of your recommendations.
13+
14+
![The Select Computed Trait screen in the Segment UI, showing options like Predictions, Recommendation (selected), Event counter, Aggregation, and Most frequent. The Recommendation option description reads "Recommend personalized products" and includes additional details about Cross Sell, Personalization, and Next Best Action use cases.](../images/recommendation_items.png).
15+
16+
## How Recommended Items works
17+
18+
Recommended Items uses your interaction events (like `order_completed`, `product_added`, and `product_searched`) along with event metadata to generate personalized recommendations for each user. Here’s an overview of the process:
19+
20+
1. **Data collection**: Segment captures user interactions from your chosen events.
21+
2. **Pattern analysis**: Machine learning models analyze these interactions to recognize patterns and user preferences.
22+
3. **Item ranking**: Based on this analysis, Segment generates an ordered list of recommended items for each user, ranked from most to least likely to engage.
23+
4. **Profile storage**: Segment then saves these recommendations as an array on each eligible user profile.
24+
25+
Once Segment attaches the recommendation array to a profile, you can use it to:
26+
27+
- Personalize experiences with the [Profile API](/docs/unify/profile-api/)
28+
- Send Recommended Items traits to downstream destinations
29+
- Build further segments based on Recommended Items
30+
- Trigger customized campaigns and experiences tailored to individual users
31+
32+
## Create a Recommended Items trait
33+
34+
> info "Before you begin"
35+
> Before you create Recommended Item traits, you'll first need to set up a Recommendation Catalog. The catalog setup process involves mapping your interaction events and providing product metadata to support recommendations. If you haven't yet set up your Recommendation Catalog, follow the steps in the [Product Based Audiences documentation](/docs/engage/audiences/product-based-audiences/#set-up-your-recommendation-catalog).
36+
37+
To create a Recommended Item trait:
38+
39+
1. In your Segment workspace, navigate to **Unify > Traits > + Create computed trait**.
40+
2. In the **New Computed Trait** builder, click **Recommendation**, then click **Next**.
41+
3. In **Select users**, click **+ Add condition** to choose the users who should receive recommendations.
42+
- You can create recommendations for up to 2 million *non-anonymous* customers.
43+
4. In **Define recommended items**, choose the item type you want to recommend.
44+
- This is based on your product catalog.
45+
5. Choose how many item types you want to return onto each profile.
46+
- You can select up to 5 item types.
47+
6. Click **Calculate** to get a preview of the number of users who will receive your recommendations, then click **Next**.
48+
7. (*Optional*) Select destinations you want to sync the trait to, then click **Next**.
49+
8. Give your trait a name, then click **Create Trait**.
50+
51+
Segment begins creating your new trait. This process could take up to 48 hours.
52+
53+
## Example use case: personalized album recommendations
54+
55+
Suppose you’re managing a music streaming app and want to give each user personalized music recommendations based on their listening habits.
56+
57+
Here's how you could configure this trait:
58+
59+
| Step | Configuration |
60+
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
61+
| Select users | Use an audience based on up to 2 million active, non-anonymous listeners who played at least one song in the past month. |
62+
| Item type | Select **Albums** as the item type to recommend. Because you have an extensive catalog of music, this lets each listener receive recommendations tailored to their interests. |
63+
| Number of item types | You decide to return a maximum of 5 albums for each profile, keeping the recommendations relevant and concise. |
64+
| Calculate | Clicking **Calculate** gives you an overview of how many users will receive the album recommendations. Use it to ensure your conditions and catalog mapping meet your criteria. |
65+
| Sync to destinations | This optional step lets you sync the trait to third-party destinations to deliver album recommendations over email, in-app messaging, or push notifications. |
66+
| Trait naming | Name your trait `Personalized Album Recommendations`, making it easy to identify for future campaigns. |
67+
68+
By setting up a trait like this, each user profile now includes personalized recommendations that reflect individual tastes. You can use these recommendations across a range of touchpoints, like in-app sections, personalized email content, or targeted messaging, to create a more engaging and customized user experience.
69+
70+
## Best practices
71+
72+
Keep the following in mind as you work with Recommended Items:
73+
74+
- **Limit recommendations to key items**: Start with 5-7 items per profile. This keeps recommendations concise and tailored to each user's preferences.
75+
- **Consider audience size**: Larger audiences can dilute engagement rates for each recommended item. Focusing on the top 20% of users keeps recommendations relevant and impactful.
76+
- **Give the system time to build the trait**: Recommended Item traits can take up to 48 hours to build, depending on data volume and complexity. Segment recommends waiting until 48 hours have passed before using the trait in campaigns.
144 KB
Loading

0 commit comments

Comments
 (0)