Is there a difference between using a single vector to represent multiple columns opposed to having each column be separately defined?
For example, as the documentation shows:
new TextLoader.Column("FeatureVector", DataKind.R4, 0, 9),
Would this be different to something like:
new TextLoaderColumn("FeatureColumn0", DataKind.R4, 0),
...
new TextLoader.Column("FeatureColumn9", DataKind.R4, 9),
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
Is there a difference between using a single vector to represent multiple columns opposed to having each column be separately defined?
For example, as the documentation shows:
new TextLoader.Column("FeatureVector", DataKind.R4, 0, 9),Would this be different to something like:
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.