我正在尝试在 AWS Sagemaker 上运行训练作业,但它一直失败并出现以下错误:
ClientError:无法解析 csv:行 1-5000,文件 /opt/ml/input/data/train/KMeans_data.csv
我选择了“text/csv”作为内容类型,我的 CSV 文件包含 5 列,其中包含数字内容和文本标题。
谁能指出这里可能出了什么问题?
谢谢!
csv machine-learning amazon-web-services k-means amazon-sagemaker
我尝试使用 cloudformation 将多个 EBS 卷安装到我的 EC2 实例,但由于某种原因,仅安装了我指定的最后一个 EBS 卷。
EG:
NewEC2Instance:
Type: AWS::EC2::Instance
DependsOn: OldSecurityGroup
Properties:
ImageId: !Ref pImageId
InstanceType: !Ref pInstanceType
BlockDeviceMappings:
-
DeviceName: /dev/sda1
Ebs:
VolumeSize: 10
DeviceName: /dev/sdf
Ebs:
VolumeSize: 11
Encrypted: true
DeviceName: /dev/sdg
Ebs:
VolumeSize: 12
Encrypted: true
DeviceName: /dev/sdh
Ebs:
VolumeSize: 100
Encrypted: true
Run Code Online (Sandbox Code Playgroud)
对于上面的代码,仅创建 100Gb /dev/sdh。
我认为 Cloudformation 正在覆盖 EBS 卷。
有人知道为什么吗?请帮忙!
amazon-ec2 amazon-ebs amazon-web-services aws-cloudformation