-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
APIIssues pertaining the friendly APIIssues pertaining the friendly APIenhancementNew feature or requestNew feature or request
Description
In code below supply a wrong column (bolded below)
Currently wrong column discovered during Train command
Ideally pipeline.Add() should return an error saying that column doesn't exist.
var pipeline = new LearningPipeline();
pipeline.Add(new TextLoader<HousePriceData>(dataPath, header: true, sep: ","));
pipeline.Add(new ColumnConcatenator(outputColumn: "NumericalFeatures",
"**SqftLiving1**", "SqftLot", "SqftAbove", "SqftBasement", "Lat", "Long", "SqftLiving15", "SqftLot15"));
Metadata
Metadata
Assignees
Labels
APIIssues pertaining the friendly APIIssues pertaining the friendly APIenhancementNew feature or requestNew feature or request