Closed
Description
System information
OS version/distro: Windows 7 Home
.NET Version (eg., dotnet --info): ML .net V0.1.0
Issue:
What is the correct way to add multiple training files to a Learning Pipeline?
In the Taxi Fare example, just adding another textloader and/or ColumnCopier, etc seems to not be correct.
Example:
pipeline.Add(new TextLoader(DataPath, useHeader: true, separator: ","));
pipeline.Add(new TextLoader(DataPath2, useHeader: true, separator: ","));