Genesiz
Genesiz

Reputation: 41

Why Dataset columns are not recognised with CSV on Azure Machine Learning?

I have created a csv file, with no header. its 1496 rows of data, on 2 columns in the form:

Real; String

example:

0.24; "Some very long string"

I go to New - Dataset - From local file Pick my file, and No header csv format

But after its done loading i get an error message i cant decrypt:

Dataset upload failed. Internal Service Error. Request ID: ca378649-009b-4ee6-b2c2-87d93d4549d7 2015-06-29 18:33:14Z

Any idea what is going wrong?

Upvotes: 4

Views: 2835

Answers (1)

tread
tread

Reputation: 11088

At this time Azure Machine Learning only accepts the comma , seperated, American style CSV.

You will need to convert to a comma separated CSV

Upvotes: 2

Related Questions