LearningPipelineExtensions.AppendCacheCheckpoint<TTrans> 方法

定义

将“缓存检查点”追加到估算器链。 这将确保根据缓存的数据训练下游估算器。 在执行多个数据传递的训练器之前,拥有缓存检查点会很有帮助。

public static Microsoft.ML.Data.EstimatorChain<TTrans> AppendCacheCheckpoint<TTrans> (this Microsoft.ML.IEstimator<TTrans> start, Microsoft.ML.Runtime.IHostEnvironment env) where TTrans : class, Microsoft.ML.ITransformer;
static member AppendCacheCheckpoint : Microsoft.ML.IEstimator<'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> * Microsoft.ML.Runtime.IHostEnvironment -> Microsoft.ML.Data.EstimatorChain<'rans (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)> (requires 'rans : null and 'rans :> Microsoft.ML.ITransformer)
<Extension()>
Public Function AppendCacheCheckpoint(Of TTrans As {Class, ITransformer}) (start As IEstimator(Of TTrans), env As IHostEnvironment) As EstimatorChain(Of TTrans)

类型参数

TTrans

参数

start
IEstimator<TTrans>

起始估算器

env
IHostEnvironment

用于缓存的主机环境。

返回

EstimatorChain<TTrans>

适用于