6 references to StatefulCustomMappingEstimator
Microsoft.ML.Samples (1)
Dynamic\Transforms\StatefulCustomMapping.cs (1)
53
var
pipeline = mlContext.Transforms.StatefulCustomMapping(mapping, init, contractName: null);
Microsoft.ML.Tests (1)
Transformers\CustomMappingTests.cs (1)
180
var
customEst = tempoEnv.Transforms.StatefulCustomMapping<MyStatefulInput, MyStatefulOutput, MyState>(MyStatefulLambda.MyStatefulAction, MyStatefulLambda.MyStateInit, nameof(MyStatefulLambda));
Microsoft.ML.Transforms (4)
CustomMappingCatalog.cs (2)
51
/// Create a <see cref="
StatefulCustomMappingEstimator
{TSrc, TState, TDst}"/>, which applies a custom mapping of input columns to output columns,
67
public static
StatefulCustomMappingEstimator
<TSrc, TDst, TState> StatefulCustomMapping<TSrc, TDst, TState>(this TransformsCatalog catalog, Action<TSrc, TDst, TState> mapAction,
StatefulCustomMappingTransformer.cs (2)
16
/// <see cref="ITransformer"/> resulting from fitting an <see cref="
StatefulCustomMappingEstimator
{TSrc, TState, TDst}"/>.
377
: base(Contracts.CheckRef(env, nameof(env)).Register(nameof(
StatefulCustomMappingEstimator
<TSrc, TDst, TState>)),