2 types derived from Trainer
Microsoft.ML.Data (2)
Transforms\ValueToKeyMappingTransformerImpl.cs (2)
345private sealed class ImplOne<T> : Trainer 370private sealed class ImplVec<T> : Trainer
11 references to Trainer
Microsoft.ML.Data (11)
Transforms\ValueToKeyMappingTransformer.cs (5)
487var trainer = Trainer.Create(cursor, 0, autoConvert, int.MaxValue, bldr); 583Trainer[] trainer = new Trainer[trainsNeeded]; 602trainer[itrainer++] = Trainer.Create(cursor, colIndex, false, lims[iinfo], bldr);
Transforms\ValueToKeyMappingTransformerImpl.cs (6)
18/// These are objects shared by both the scalar and vector implementations of <see cref="Trainer"/> 274/// Creates an instance of <see cref="Trainer"/> appropriate for the type at a given 284public static Trainer Create(DataViewRow row, int col, bool autoConvert, int count, Builder bldr) 301private static Trainer CreateOne<T>(DataViewRow row, int col, bool autoConvert, int count, Builder bldr) 317private static Trainer CreateVec<T>(DataViewRow row, int col, int count, Builder bldr) 329/// Indicates to the <see cref="Trainer"/> that we have reached a new row and should consider