Please paste or attach the code or logs or traces that would be helpful to diagnose the issue you are reporting.
Perhaps CollectionDataSource is what you need. Here's an example from the 0.2 release blog post.
var pipeline = new LearningPipeline();
var data = new List() {
new IrisData { SepalLength = 1f, SepalWidth = 1f
,PetalLength=0.3f, PetalWidth=5.1f, Label=1},
new IrisData { SepalLength = 1f, SepalWidth = 1f
,PetalLength=0.3f, PetalWidth=5.1f, Label=1},
new IrisData { SepalLength = 1.2f, SepalWidth = 0.5f
,PetalLength=0.3f, PetalWidth=5.1f, Label=0}
};
var collection = CollectionDataSource.Create(data);
pipeline.Add(collection);
Hope that helps!
Great, many thanks @jwood803
Most helpful comment
Perhaps
CollectionDataSourceis what you need. Here's an example from the 0.2 release blog post.Hope that helps!