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