can sagemaker batch transform process input files with new line character ?

0

example provided in the aws documentation , https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html, see sample input csv can be structured like a sample below. is there a link, to see the actual csv file that is used in an working example , instead of the sample posted in the docs. it is also mentioned that each record is one per line and no end of line character is allowed. what if the input type is other than csv, like json? do the same rules apply to json files as well, one record per line, or can one record be spread across multiple lines ,what about new line character in that case?

Record1-Attribute1, Record1-Attribute2, Record1-Attribute3, ..., Record1-AttributeM
Record2-Attribute1, Record2-Attribute2, Record2-Attribute3, ..., Record2-AttributeM
...
...

質問済み 2年前638ビュー
1回答
0

Yes, you will need to specify SplitType parameter ( Reference)

   Split_type="Line", 
AWS
回答済み 2年前
  • @AWS_Anonymous - I was talking about the input file, the docs says assemble_with="Line" , this attribute is for assembling the output.

  • @clouduser, I see that. Edited the answer to reflect it

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ