8 implementations of InputSchema
Microsoft.ML.Data (6)
DataView\CompositeRowToRowMapper.cs (1)
23public DataViewSchema InputSchema { get; }
DataView\RowToRowMapperTransform.cs (1)
247public DataViewSchema InputSchema => Source.Schema;
EntryPoints\TransformModelImpl.cs (1)
245public DataViewSchema InputSchema => _rootSchema;
Transforms\ColumnSelecting.cs (1)
671public DataViewSchema InputSchema => Source.Schema;
Transforms\NopTransform.cs (1)
30DataViewSchema IRowToRowMapper.InputSchema => Source.Schema;
Transforms\TransformBase.cs (1)
174public DataViewSchema InputSchema => Source.Schema;
Microsoft.ML.TimeSeries (2)
SequentialTransformerBase.cs (2)
595public DataViewSchema InputSchema => Source.Schema; 926DataViewSchema IRowToRowMapper.InputSchema => Source.Schema;
2 references to InputSchema
Microsoft.ML.Core (1)
Data\IRowToRowMapper.cs (1)
40/// <see cref="InputSchema"/>. Implementors of this method should throw if that is not the case. Conversely,
Microsoft.ML.TestFramework (1)
DataPipe\TestDataPipeBase.cs (1)
100Check(mapper.InputSchema == data.Schema, "InputSchemas were not identical to actual input schema");