IDataLoaderEstimator<TSource,TLoader> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sometimes we need to 'fit' an IDataLoader<TSource>. A DataLoader estimator is the object that does it.
public interface IDataLoaderEstimator<in TSource,out TLoader> where TLoader : IDataLoader<in TSource>
type IDataLoaderEstimator<'Source, 'Loader (requires 'Loader :> IDataLoader<'Source>)> = interface
Public Interface IDataLoaderEstimator(Of In TSource, Out TLoader)
Type Parameters
- TSource
- TLoader
- Derived
Methods
Fit(TSource) |
Train and return a data loader. |
GetOutputSchema() |
The 'promise' of the output schema. It will be used for schema propagation. |