我正在尝试创建一个SFrame
包含图像和边界框的坐标,以便使用TuriCreate
. 我通过IBM Cloud AnnotationsCreateML
创建了自己的数据集,并以格式导出。当我运行时:
usage_data = tc.SFrame.read_json("annotations.json")
我得到:
[{'标签':'xyz'... | 8be1172e-44bb-4084-917f-db....
这不是要求的格式。确认运行以下代码:
data = tc.SFrame.read_json("annotations.json")
train_data, test_data = data.random_split(0.75)
model = tc.object_detector.create(train_data)
predictions = model.predict(test_data)
`我得到:
ToolkitError: No "feature" column specified and no column with expected type "image" is found. "datasets" consists of columns with types: list, str.
我想知道:
CreateML
导出数据格式是否正确?- 我可以
SFrame.read_json()
用来读取这种数据吗?