Creating schema with type "null" for genres throws error on AWS Console for Amazon Personalize

0

Using a web console for Amazon Personalize for creating item datasets, it throws an error "GENRES field cannot be of type null" when trying to create an item schema with GENRES that contains type "null". But the documentation https://docs.aws.amazon.com/personalize/latest/dg/how-it-works-dataset-schema.html has GENRES with type null for imperfect data. Also, it throws an error "schema is missing required field [genres]" if it's not included in the schema, which is odd, because the documentation says that the item schema requires ITEM_ID, CREATION_TIMESTAMP, and 1 metadata field where the table doesn't even mention genres. https://docs.aws.amazon.com/personalize/latest/dg/custom-datasets-and-schemas.html#dataset-requirements

However, we could create the schema without genres when using the AWS SDK. Is this a bug in AWS console? or is it a new requirement that hasn't been updated on SDK?

已提問 2 年前檢視次數 362 次
2 個答案
1
已接受的答案

Solved the issue, we were using "Video-On-Demand" instead of custom model, and the requirements were different.

已回答 2 年前
0

If you are using a Custom Dataset Group you can define your own schema and allow for null values in a "GENRES" column:

{
  "name": "GENRES",
  "type": [
    "null",
    "string"
  ],
  "categorical": true
}

There is no requirement to have a "GENRES" metadata field in Custom Dataset Groups.

However, if you created a Domain Dataset Group, for instance:

response = personalize.create_dataset_group( 
    name='personalize_vod_ds_group',
    domain='VIDEO_ON_DEMAND'
)

In the 'VIDEO_ON_DEMAND' domain "GENRES" is a required field (Documentation) and will give an error if not provided.

AWS
Anna_G
已回答 2 年前

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

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

回答問題指南