0

I'm trying to train a model to use in the Google Prediction API. I uploaded a csv with ~1 million rows and ~10 columns ~12 hours ago. The trainingStatus has been "RUNNING" every time I've checked it over the past few hours but when I make a prediction.trainedmodels.get request using the API Explorer it returns this response:

{
 "kind": "prediction#training",
 "id": "my_model",
 "selfLink": "https://content.googleapis.com/prediction/v1.6/projects/my_project/trainedmodels/my_model",
 "created": "2014-03-24T03:36:51.252Z",
 "trainingStatus": "ERROR"
}

Is there any way to get a more detailed error message?

I have a valid billing profile enabled on my project and I don't see anything in the documentation.

4

1 回答 1

1

https://developers.google.com/prediction/docs/faq

对我的培训文件进行培训后,我收到消息“错误”。发生了什么?

虽然我们不断努力提供更详细的错误消息,但如果训练失败、预测引擎找不到训练文件或其他错误,当前会返回此消息。如果您不断收到此消息,请检查您的训练查询以确保数据路径正确,并检查您的训练数据格式以确保您没有多余的换行符或逗号,然后尝试重新提交您的训练请求。

于 2014-03-24T17:00:28.157 回答