跳至內容

AWS Javascript SDK PersonalizeRuntime getPersonalizedRanking does not return scores

0

According to the documentation https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/PersonalizeRuntime.html#getPersonalizedRanking-property getPersonalizedRanking should return an array of objects that include both the itemId and score. When I use this function I only get the item ids, and no scores. Running this on the console gives me the same order of item ids and also includes the scores.

Is there something I'm missing or is this potentially a bug in the javascript sdk?

Here are my params:

{
  campaignArn: "removed",
  inputList: [
    "12-7-53",
    "170-7-53",
    "883-7-53",
  ],
  userId: "1317",
  context: {
  },
}

And the repsonse:

{
  personalizedRanking: [
    {
      itemId: "883-7-53",
    },
    {
      itemId: "170-7-53",
    },
    {
      itemId: "12-7-53",
    },
  ],
}
已提問 3 年前檢視次數 327 次
1 個回答
1
已接受的答案

I was able to print out the scores for GetPersonalizedRanking with AWS SDK JavaScript version 2.1404.0 and Node version 20.3.1, I ran the code below in my local environment:

const AWS = require('aws-sdk')

AWS.config.update({
  accessKeyId: 'INSERT-ACCESS-KEY',
  secretAccessKey: 'INSERT-SECRET-KEY',
  region: "us-east-1"
})

const personalize = new AWS.PersonalizeRuntime();

var params = {
  campaignArn: "arn:aws:personalize:us-east-1:account:campaign/example-campaign-name",
  inputList: ['257', '201', '495', '399', '184', '919', '222', '227', '450', '151', '373', '380'],
  userId: '2', 
  context: {} 
};

personalize.getPersonalizedRanking(params, (err,data) => {
  if(err){
    console.log(err);
  }else{
    console.log(JSON.stringify(data.personalizedRanking));
    const rankedItems = data.personalizedRanking.map  ((item) => item.itemId);
    console.log("OUTPUT " + rankedItems);
  }
});

I then received an output with the scores, below is an example:

{
    "itemId": "495",
    "score": 0.988938,
    "promotionName": null
}

I suggest checking the SDK and Node versions that you are using and try the versions I have used here to see if the scores will appear in the output. But should you still face an issue of scores being excluded in the response, then I would suggest raising a case with AWS Premium Support [1] for further troubleshooting to understand why the scores are not being passed.

I hope this helps.

Reference:

[1] https://aws.amazon.com/premiumsupport/faqs/

AWS
已回答 3 年前
專家
已審閱 2 年前
  • Thank you. It was indeed the sdk version.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。