Closed
Description
We currently have
public TextLoader(IHostEnvironment env, Column[] columns, Action<Arguments> advancedSettings, IMultiStreamSource dataSample = null)
public TextLoader(IHostEnvironment env, Arguments args, IMultiStreamSource dataSample = null)
We need to:
- Make the second constructor internal or private (it's used only by cmdline/dependency injection.
- Add 'separator chars' and 'has header' as non-advanced parameters
The first change will naturally trigger a lot of changes in the code that creates the TextLoader
, this is by design.