Azure ML support says to me that delimiter must be comma, this would cause too much hassle with data having semicolon as separator and with a lot of commas in the cell values.
So how to process semicolon separated CSV files in Azure ML?
Azure ML only accepts the comma ,
separated CSV. Do a little work around.
Open your data file using a text editor. (Notepad will do the trick). Find and replace all semicolons with 'tab' (Make it a TSV) and the commas in data values may not occur a problem then. Make sure to define that the input is a TSV; not a CSV.