11 references to TransformModel
Microsoft.ML.Core (7)
EntryPoints\ModuleArgs.cs (2)
572/// A transform model, represented by an <see cref="EntryPoints.TransformModel"/>. 623if (typeof(TransformModel).IsAssignableFrom(type))
EntryPoints\PredictorModel.cs (2)
32internal abstract TransformModel TransformModel { get; } 44internal abstract PredictorModel Apply(IHostEnvironment env, TransformModel transformModel);
EntryPoints\TransformModel.cs (3)
37/// from <see cref="Apply(IHostEnvironment, TransformModel)"/> may differ from this, similarly to how 53internal abstract TransformModel Apply(IHostEnvironment env, TransformModel input);
Microsoft.ML.EntryPoints (1)
ScoreModel.cs (1)
17/// As a result, we return both the scored data and the scoring transform as a <see cref="TransformModel"/>.
Microsoft.ML.OnnxConverter (3)
SaveOnnxCommand.cs (3)
64/// Entry point API can save either <see cref="TransformModel"/> or <see cref="PredictorModel"/>. 65/// <see cref="Model"/> is used when the saved model is typed to <see cref="TransformModel"/>. 71/// Entry point API can save either <see cref="TransformModel"/> or <see cref="PredictorModel"/>.