6 references to MyState
Microsoft.ML.Tests (6)
Transformers\CustomMappingTests.cs (6)
141public class MyStatefulLambda : StatefulCustomMappingFactory<MyStatefulInput, MyStatefulOutput, MyState> 143public override Action<MyStatefulInput, MyStatefulOutput, MyState> GetMapping() 148public override Action<MyState> GetStateInitAction() 153public static void MyStatefulAction(MyStatefulInput input, MyStatefulOutput output, MyState state) 159public static void MyStateInit(MyState state) 180var customEst = tempoEnv.Transforms.StatefulCustomMapping<MyStatefulInput, MyStatefulOutput, MyState>(MyStatefulLambda.MyStatefulAction, MyStatefulLambda.MyStateInit, nameof(MyStatefulLambda));