LearningPipelineExtensions.Append 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Append<TSource,TTrans>(IDataLoader<TSource>, IEstimator<TTrans>) |
藉由將估算器附加至此資料載入器,以建立新的複合載入器估算器。 |
Append<TSource,TTrans>(IDataLoader<TSource>, TTrans) |
藉由將轉換器附加至此資料載入器,以建立新的複合載入器。 |
Append<TSource,TTrans>(IDataLoaderEstimator<TSource,IDataLoader<TSource>>, IEstimator<TTrans>) |
藉由將另一個估算器附加至此資料載入器估算器的結尾,以建立新的複合載入器估算器。 |
Append<TTrans>(ITransformer, TTrans) |
藉由將另一個轉換器附加至此轉換器鏈結的結尾,以建立新的轉換器鏈結。 |
Append<TTrans>(IEstimator<ITransformer>, IEstimator<TTrans>, TransformerScope) |
藉由將另一個估算器附加至此估算器的結尾,以建立新的估算器鏈結。 |
Append<TSource,TTrans>(IDataLoader<TSource>, IEstimator<TTrans>)
藉由將估算器附加至此資料載入器,以建立新的複合載入器估算器。
public static Microsoft.ML.Data.CompositeLoaderEstimator<TSource,TTrans> Append<TSource,TTrans> (this Microsoft.ML.IDataLoader<TSource> start, Microsoft.ML.IEstimator<TTrans> estimator) where TTrans : class, Microsoft.ML.ITransformer;
static member Append : Microsoft.ML.IDataLoader<'Source> * Microsoft.ML.IEstimator<'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> -> Microsoft.ML.Data.CompositeLoaderEstimator<'Source, 'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)
<Extension()>
Public Function Append(Of TSource, TTrans) (start As IDataLoader(Of TSource), estimator As IEstimator(Of TTrans)) As CompositeLoaderEstimator(Of TSource, TTrans)
類型參數
- TSource
- TTrans
參數
- start
- IDataLoader<TSource>
- estimator
- IEstimator<TTrans>
傳回
CompositeLoaderEstimator<TSource,TTrans>
適用於
Append<TSource,TTrans>(IDataLoader<TSource>, TTrans)
藉由將轉換器附加至此資料載入器,以建立新的複合載入器。
public static Microsoft.ML.Data.CompositeDataLoader<TSource,TTrans> Append<TSource,TTrans> (this Microsoft.ML.IDataLoader<TSource> loader, TTrans transformer) where TTrans : class, Microsoft.ML.ITransformer;
static member Append : Microsoft.ML.IDataLoader<'Source> * 'rans -> Microsoft.ML.Data.CompositeDataLoader<'Source, 'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)
<Extension()>
Public Function Append(Of TSource, TTrans) (loader As IDataLoader(Of TSource), transformer As TTrans) As CompositeDataLoader(Of TSource, TTrans)
類型參數
- TSource
- TTrans
參數
- loader
- IDataLoader<TSource>
- transformer
- TTrans
傳回
CompositeDataLoader<TSource,TTrans>
適用於
Append<TSource,TTrans>(IDataLoaderEstimator<TSource,IDataLoader<TSource>>, IEstimator<TTrans>)
藉由將另一個估算器附加至此資料載入器估算器的結尾,以建立新的複合載入器估算器。
public static Microsoft.ML.Data.CompositeLoaderEstimator<TSource,TTrans> Append<TSource,TTrans> (this Microsoft.ML.IDataLoaderEstimator<TSource,Microsoft.ML.IDataLoader<TSource>> start, Microsoft.ML.IEstimator<TTrans> estimator) where TTrans : class, Microsoft.ML.ITransformer;
static member Append : Microsoft.ML.IDataLoaderEstimator<'Source, Microsoft.ML.IDataLoader<'Source>> * Microsoft.ML.IEstimator<'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> -> Microsoft.ML.Data.CompositeLoaderEstimator<'Source, 'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)
<Extension()>
Public Function Append(Of TSource, TTrans) (start As IDataLoaderEstimator(Of TSource, IDataLoader(Of TSource)), estimator As IEstimator(Of TTrans)) As CompositeLoaderEstimator(Of TSource, TTrans)
類型參數
- TSource
- TTrans
參數
- start
- IDataLoaderEstimator<TSource,IDataLoader<TSource>>
- estimator
- IEstimator<TTrans>
傳回
CompositeLoaderEstimator<TSource,TTrans>
適用於
Append<TTrans>(ITransformer, TTrans)
藉由將另一個轉換器附加至此轉換器鏈結的結尾,以建立新的轉換器鏈結。
public static Microsoft.ML.Data.TransformerChain<TTrans> Append<TTrans> (this Microsoft.ML.ITransformer start, TTrans transformer) where TTrans : class, Microsoft.ML.ITransformer;
static member Append : Microsoft.ML.ITransformer * 'rans -> Microsoft.ML.Data.TransformerChain<'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)
<Extension()>
Public Function Append(Of TTrans As {Class, ITransformer}) (start As ITransformer, transformer As TTrans) As TransformerChain(Of TTrans)
類型參數
- TTrans
參數
- start
- ITransformer
- transformer
- TTrans
傳回
TransformerChain<TTrans>
適用於
Append<TTrans>(IEstimator<ITransformer>, IEstimator<TTrans>, TransformerScope)
藉由將另一個估算器附加至此估算器的結尾,以建立新的估算器鏈結。
public static Microsoft.ML.Data.EstimatorChain<TTrans> Append<TTrans> (this Microsoft.ML.IEstimator<Microsoft.ML.ITransformer> start, Microsoft.ML.IEstimator<TTrans> estimator, Microsoft.ML.Data.TransformerScope scope = Microsoft.ML.Data.TransformerScope.Everything) where TTrans : class, Microsoft.ML.ITransformer;
static member Append : Microsoft.ML.IEstimator<Microsoft.ML.ITransformer> * Microsoft.ML.IEstimator<'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> * Microsoft.ML.Data.TransformerScope -> Microsoft.ML.Data.EstimatorChain<'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)
<Extension()>
Public Function Append(Of TTrans As {Class, ITransformer}) (start As IEstimator(Of ITransformer), estimator As IEstimator(Of TTrans), Optional scope As TransformerScope = Microsoft.ML.Data.TransformerScope.Everything) As EstimatorChain(Of TTrans)
類型參數
- TTrans
參數
- start
- IEstimator<ITransformer>
- estimator
- IEstimator<TTrans>
- scope
- TransformerScope
傳回
EstimatorChain<TTrans>