Hi,
I want to load data from memory, so I can connect it with sql server, webservice etc.
pipeline.Add(new TextLoader(dataPath).CreateFrom<IrisData>(separator: ','));
but this is only method that I can find! It only works with file on the disk!
I want to add data from variable like:
string x = "116.76000,0.00000,116.76000,0.00000,116.76000,UP"
I hope it is possible right now?
Thanks advance!
Hi,
I want to load data from memory, so I can connect it with sql server, webservice etc.
pipeline.Add(new TextLoader(dataPath).CreateFrom<IrisData>(separator: ','));but this is only method that I can find! It only works with file on the disk!
I want to add data from variable like:
string x = "116.76000,0.00000,116.76000,0.00000,116.76000,UP"I hope it is possible right now?
Thanks advance!