Base:
property
Schema
Microsoft.ML.DataViewRow.Schema
1 write to Schema
Microsoft.ML.Data (1)
DataView\DataViewConstructionUtils.cs (1)
227Schema = schema;
8 references to Schema
Microsoft.ML.Data (3)
DataView\DataViewConstructionUtils.cs (1)
499public override DataViewSchema Schema => _toWrap.Schema;
Prediction\PredictionEngine.cs (2)
118PredictionEngineCore(env, _inputRow, makeMapper(_inputRow.Schema), ignoreMissingColumns, outputSchemaDefinition, out _disposer, out _outputRow); 119OutputSchema = Transformer.GetOutputSchema(_inputRow.Schema);
Microsoft.ML.Transforms (5)
CustomMappingTransformer.cs (3)
161result[i] = Utils.MarshalInvoke(GetDstGetter<int>, dstRow.Schema[i].Type.RawType, dstRow, i, refresh); 192return Enumerable.Range(0, dstRow.Schema.Count).Select(x => new DataViewSchema.DetachedColumn(dstRow.Schema[x])).ToArray();
StatefulCustomMappingTransformer.cs (2)
122var cols = Enumerable.Range(0, dstRow.Schema.Count).Select(x => new DataViewSchema.DetachedColumn(dstRow.Schema[x])).ToArray();