Why is entity ID and event ID important in Amazon Fraud Detector?

0

I'm having difficulty finding information about the entityId and eventId input variables to get a prediction from Amazon Fraud Detector.

The description is only "The unique ID used to identify the event." and "The entity ID. If you do not know the entityId , you can pass unknown , which is areserved string literal." Can someone explain why this variable is important? What happens if someone uses the same event ID for two different events? How are entity IDs created?

AWS
S_Moose
已提問 3 年前檢視次數 506 次
1 個回答
0
已接受的答案

Entity ID is "who" performed the event. Depending on the type of data, this could be a username, user ID, company name, etc. If you think about an ML model and trying to predict fraud... you could imagine that if UserA has committed fraud in the past, it is more likely that transactions from UserA in the future are fraudulent. So, providing entity ID can help with accuracy of predictions. Though, it is not a required field and that's why you could just pass in unknown.

Source

Event ID is just what it sounds like. It's a specific purchase, credit card transaction, etc. I think that if a customer is using a proper data set, one would not expect two records to have the same Event ID. If the customer's data set does not have a unique event ID, they should create a synthetic ID... either a concatenation of other fields that uniquely represent the row, or just generate a UUID.

已回答 3 年前

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

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

回答問題指南