8 implementations of ITransformCanSaveOnnx
Microsoft.ML.Data (6)
DataView\RowToRowMapperTransform.cs (1)
68ITransformCanSaveOnnx, ITransformCanSavePfa, ITransformTemplate
Scorers\BinaryClassifierScorer.cs (1)
25internal sealed class BinaryClassifierScorer : PredictedLabelScorerBase, ITransformCanSaveOnnx
Scorers\GenericScorer.cs (1)
28internal sealed class GenericScorer : RowToRowScorerBase, ITransformCanSavePfa, ITransformCanSaveOnnx
Scorers\PredictedLabelScorerBase.cs (1)
20internal abstract class PredictedLabelScorerBase : RowToRowScorerBase, ITransformCanSavePfa, ITransformCanSaveOnnx, IDisposable
Transforms\ColumnSelecting.cs (1)
653private sealed class SelectColumnsDataTransform : IDataTransform, IRowToRowMapper, ITransformTemplate, ITransformCanSaveOnnx
Transforms\TransformBase.cs (1)
267ITransformCanSaveOnnx
Microsoft.ML.TimeSeries (1)
SequentialTransformerBase.cs (1)
735ITransformCanSaveOnnx, ITransformCanSavePfa
Microsoft.ML.Transforms (1)
OptionalColumnTransform.cs (1)
33internal sealed class OptionalColumnTransform : RowToRowMapperTransformBase, ITransformCanSaveOnnx
14 references to ITransformCanSaveOnnx
Microsoft.ML.OnnxConverter (12)
OnnxExportExtensions.cs (1)
21LinkedList<ITransformCanSaveOnnx> transforms = null;
SaveOnnxCommand.cs (11)
139internal static void GetPipe(OnnxContextImpl ctx, IChannel ch, IDataView end, out IDataView source, out IDataView trueEnd, out LinkedList<ITransformCanSaveOnnx> transforms) 145transforms = new LinkedList<ITransformCanSaveOnnx>(); 148ITransformCanSaveOnnx onnxTransform = transform as ITransformCanSaveOnnx; 165LinkedList<ITransformCanSaveOnnx> transforms, HashSet<string> inputColumnNamesToDrop = null, HashSet<string> outputColumnNamesToDrop = null) 182foreach (var trans in transforms) 333LinkedList<ITransformCanSaveOnnx> transforms; 352var scoreOnnx = scorePipe as ITransformCanSaveOnnx; 369transforms.AddLast(outputData as ITransformCanSaveOnnx); 395transforms.AddLast(end as ITransformCanSaveOnnx);
Microsoft.ML.Tests (2)
OnnxConversionTest.cs (2)
803LinkedList<ITransformCanSaveOnnx> transforms = null; 1614LinkedList<ITransformCanSaveOnnx> transforms = null;