8 references to Create
Microsoft.ML.Data (2)
DataView\TypedCursor.cs (1)
670return TypedCursorable<TRow>.Create(env, data, ignoreMissingColumns, schemaDefinition);
Prediction\PredictionEngine.cs (1)
126var cursorable = TypedCursorable<TDst>.Create(env, new EmptyDataView(env, mapper.OutputSchema), ignoreMissingColumns, outputSchemaDefinition);
Microsoft.ML.TimeSeries (1)
PredictionEngine.cs (1)
222var cursorable = TypedCursorable<TDst>.Create(env, new EmptyDataView(env, mapper.OutputSchema), ignoreMissingColumns, outputSchemaDefinition);
Microsoft.ML.Transforms (5)
CustomMappingFilter.cs (1)
32TypedSrc = TypedCursorable<TSrc>.Create(Host, input, false, null);
CustomMappingTransformer.cs (1)
127_typedSrc = TypedCursorable<TSrc>.Create(_host, emptyDataView, false, _parent.InputSchemaDefinition);
StatefulCustomMappingTransformer.cs (1)
126_typedSrc = TypedCursorable<TSrc>.Create(Host, input, false, null);
StatefulFilterTransform.cs (2)
69_typedSource = TypedCursorable<TSrc>.Create(_host, Source, false, inputSchemaDefinition); 85_typedSource = TypedCursorable<TSrc>.Create(_host, newSource, false, transform._inputSchemaDefinition);