Learning Google Prediction API with JSON data -


i've found samples of using google prediction api, there csv data used in sample. want feed prediction api data organized this:

[{     number: 1,     type: 0,     channels: [         [1, 5, 3, ...],          [7, 1, 3, ...],          [1, 23, 7, ...],          [5, 4, 3, ...],          [1, 3, 3, ...],          [6, 4, 3, ...]] }, ...] 

is possible learn model such data or have use csv only?

no. prediction api has support csv format. write script iterates through instances in json array , converts them comma-separated values.


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -