I would like a general learning pipeline (from N features predict a label, for example), in the sense that one of my input CSVs would have 5 features and another would have 10 features (those two CSVs would obviously produce different models, I don't want to combine them in any way, I just want to run the same program on both the CSVs).
However, to load the features, I need to use
TextLoader(...).CreateFrom<ClassA>()
where ClassA
defines my schema. Its properties need to reflect the CSV format, therefore the CSV must always have the same number of columns.
I have noticed CustomTextLoader
but it's obsolete. Any ideas? Thank you.