在 Azure 中创建数据资产但出现此错误

问题描述 投票:0回答:1

我正在尝试创建 ML 数据资产,并且正在访问此链接:https://microsoftlearning.github.io/mslearn-ai-fundamentals/Instructions/Labs/01-machine-learning.html 完成它,但我不断收到此错误 enter image description here

我知道我的文件与示例中的文件不完全相同,但即使我使用这些文件,我也会遇到相同的错误。所以我不确定问题是什么,因为这是我第一次在 Azure 中使用 ML。

azure machine-learning artificial-intelligence
1个回答
0
投票

当数据集类型为

MLTable
时,您还需要提供定义要包含的文件和转换的
MLTable
文件。

接下来,不支持

.xlsx

请参阅此处了解

MLTable
中支持的文件。

下面是您应该拥有的示例文件。

$schema: https://azuremlschemas.azureedge.net/latest/MLTable.schema.json 

paths:
    - pattern: ./*.csv

transformations:
  - read_delimited:
      delimiter: ","
      header: all_files_same_headers
      encoding: utf8

或者

您可以直接给出文件名。

paths: 
  - file: ./titanic.csv
transformations: 
  - read_delimited: 
      delimiter: ',' 
      encoding: 'ascii' 
      empty_as_string: false
      header: from_first_file

所以,在你的情况下,

MLTable
文件是

paths: 
  - file: ./CarPrice_Assignment.csv
transformations: 
  - read_delimited: 
      delimiter: ','

该文件夹应包含如下文件。

enter image description here

在 mltable 文件中,您可以根据您的文件添加内容。

请参阅此处了解有关使用 mltable 文件的更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.