8 implementations of InputSchema
Microsoft.ML.Data (6)
DataView\CompositeRowToRowMapper.cs (1)
23
public DataViewSchema
InputSchema
{ get; }
DataView\RowToRowMapperTransform.cs (1)
247
public DataViewSchema
InputSchema
=> Source.Schema;
EntryPoints\TransformModelImpl.cs (1)
245
public DataViewSchema
InputSchema
=> _rootSchema;
Transforms\ColumnSelecting.cs (1)
671
public DataViewSchema
InputSchema
=> Source.Schema;
Transforms\NopTransform.cs (1)
30
DataViewSchema IRowToRowMapper.
InputSchema
=> Source.Schema;
Transforms\TransformBase.cs (1)
174
public DataViewSchema
InputSchema
=> Source.Schema;
Microsoft.ML.TimeSeries (2)
SequentialTransformerBase.cs (2)
595
public DataViewSchema
InputSchema
=> Source.Schema;
926
DataViewSchema 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)
100
Check(mapper.
InputSchema
== data.Schema, "InputSchemas were not identical to actual input schema");