Amazon Personalize- Exploration weight impact on recommendations

0

According to the documentation, with exploration weight as '0', there should be no exploration and the items returned should be based on relevance. With our testing we don't have the items returned completely based on relevance, it still returns popular items which the user has not interacted with at all. Our dataset has 50 users (with 100 interactions each) and also some 17 anonymous interactions (with no user_id and only session_id).

Is this an issue with the dataset somehow?

This is our user-item interaction schema example:

	"type": "record",
	"name": "Interactions",
	"namespace": "com.amazonaws.personalize.schema",
	"fields": [
		{
			"name": "USER_ID",
			"type": "string"
		},
		{
			"name": "ITEM_ID",
			"type": "string"
		},
		{
			"name": "EVENT_TYPE",
			"type": "string"
		},
		{
			"name": "DEVICE_TYPE",
			"type": "string"
		},
		{
			"name": "LOCATION",
			"type": "string"
		},
		{
			"name": "SESSION_ID",
			"type": [
				"null",
				"string"
			]
		},
		{
			"name": "TIMESTAMP",
			"type": "long"
		}
	]
}
  • 5K interactions for 50 users is an extremely small dataset. How many distinct items are in the dataset? What is the distribution of interaction counts across those items? What are the offline metrics from the model?

질문됨 2년 전398회 조회
1개 답변
0

Hi there,

I believe there is always some innate error in the relevance but in this blog post are some ways to improve the relevance by leveraging contextual information.

Hope this helps make the recommendations more accurate and here is an additional resource to help you think about how you'd define/determine relevance.

Regards NN

답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠