1 override of InputSchema
Microsoft.ML.Data (1)
EntryPoints\TransformModelImpl.cs (1)
48
internal override DataViewSchema
InputSchema
=> _schemaRoot;
20 references to InputSchema
Microsoft.ML.Core (2)
EntryPoints\TransformModel.cs (2)
38
/// <see cref="
InputSchema
"/> may differ from the schema of dataviews we apply this transform model to.
63
/// given a row with the same schema as <see cref="
InputSchema
"/>.
Microsoft.ML.Data (4)
EntryPoints\PredictorModelImpl.cs (2)
82
IDataView data = new EmptyDataView(env, TransformModel.
InputSchema
);
141
var predInput = TransformModel.Apply(env, new EmptyDataView(env, TransformModel.
InputSchema
));
EntryPoints\SummarizePredictor.cs (1)
41
input.PredictorModel.PrepareData(host, new EmptyDataView(host, input.PredictorModel.TransformModel.
InputSchema
), out rmd, out predictor);
EntryPoints\TransformModelImpl.cs (1)
152
DataViewSchema schemaRoot = input.
InputSchema
;
Microsoft.ML.Ensemble (11)
EntryPoints\CreateEnsemble.cs (3)
105
var inputData = new EmptyDataView(env, model.TransformModel.
InputSchema
);
111
inputSchema = model.TransformModel.
InputSchema
;
303
var inputSchema = predictors[0].TransformModel.
InputSchema
;
EntryPoints\PipelineEnsemble.cs (2)
35
new EmptyDataView(host, input.PredictorModel.TransformModel.
InputSchema
),
53
pm.PrepareData(host, new EmptyDataView(host, pm.TransformModel.
InputSchema
), out rmd, out IPredictor pred);
PipelineEnsemble.cs (6)
419
var inputSchema = predModel.TransformModel.
InputSchema
;
582
var dv = new EmptyDataView(Host, PredictorModels[i].TransformModel.
InputSchema
);
595
var edv = new EmptyDataView(env, model.TransformModel.
InputSchema
);
634
var edv = new EmptyDataView(env, model.TransformModel.
InputSchema
);
658
var edv = new EmptyDataView(env, model.TransformModel.
InputSchema
);
720
var dv = new EmptyDataView(Host, PredictorModels[i].TransformModel.
InputSchema
);
Microsoft.ML.EntryPoints (1)
ScoreModel.cs (1)
125
var emptyData = new EmptyDataView(host, input.PredictorModel.TransformModel.
InputSchema
);
Microsoft.ML.OnnxConverter (2)
SaveOnnxCommand.cs (2)
315
view = _model.Apply(Host, new EmptyDataView(Host, _model.
InputSchema
));
319
view = _predictiveModel.TransformModel.Apply(Host, new EmptyDataView(Host, _predictiveModel.TransformModel.
InputSchema
));