2 instantiations of StatefulCustomMappingTransformer
Microsoft.ML.Transforms (2)
CustomMappingFactory.cs (1)
73return new StatefulCustomMappingTransformer<TSrc, TDst, TState>(env, mapAction, contractName, stateInitAction);
StatefulCustomMappingTransformer.cs (1)
378new StatefulCustomMappingTransformer<TSrc, TDst, TState>(env, mapAction, contractName, stateInitAction))
5 references to StatefulCustomMappingTransformer
Microsoft.ML.Samples (1)
Dynamic\Transforms\StatefulCustomMapping.cs (1)
58var transformer = pipeline.Fit(data);
Microsoft.ML.Transforms (4)
StatefulCustomMappingTransformer.cs (4)
51_host = env.Register(nameof(StatefulCustomMappingTransformer<TSrc, TDst, TState>)); 107private readonly StatefulCustomMappingTransformer<TSrc, TDst, TState> _parent; 113public RowToRowMapper(IHostEnvironment env, StatefulCustomMappingTransformer<TSrc, TDst, TState> parent, IDataView input) 363public sealed class StatefulCustomMappingEstimator<TSrc, TDst, TState> : TrivialEstimator<StatefulCustomMappingTransformer<TSrc, TDst, TState>>