Answers: A and C
Option A is correct. The Content-Type of text/csv without specifying a label_size is used when you have target data, usually in column one, since the default value for label_size is 1, meaning you have one target column. (See the Amazon SageMaker developer guide titled Common Data Formats for Training)
Option B is incorrect. The Content-Type of text/csv specifying a label_size of 0 is used when you do not have target data. You usually choose this setting when using unsupervised learning. (See the Amazon SageMaker developer guide titled Common Data Formats for Training)
Option C is correct. From the Amazon SageMaker developer guide titled Common Data Formats for Training, “Amazon SageMaker requires that a CSV file doesn`t have a header record and that the target variable is in the first column”.
Option D is incorrect. From the Amazon SageMaker developer guide titled Common Data Formats for Training, “Amazon SageMaker requires that a CSV file doesn`t have a header record and that the target variable is in the first column”.
Option E is incorrect.From the Amazon SageMaker developer guide titled Common Data Formats for Training, “Amazon SageMaker requires that a CSV file doesn`t have a header record and that the target variable is in the first column”.
Option F is incorrect.From the Amazon SageMaker developer guide titled Common Data Formats for Training, “Amazon SageMaker requires that a CSV file doesn`t have a header record and that the target variable is in the first column”.
Reference:
Please see the Amazon SageMaker developer guide, specifically Common Data Formats for Built-in Algorithms and Common Data Formats for Training.