1 instantiation of TypedCursorable
Microsoft.ML.Data (1)
DataView\TypedCursor.cs (1)
324return new TypedCursorable<TRow>(env, data, ignoreMissingColumns, outSchema);
20 references to TypedCursorable
Microsoft.ML.Data (9)
DataView\TypedCursor.cs (7)
132_peeks[i] = ApiUtils.GeneratePeek<TypedCursorable<TRow>, TRow>(_columns[i]); 133_pokes[i] = ApiUtils.GeneratePoke<TypedCursorable<TRow>, TRow>(_columns[i]); 312public static TypedCursorable<TRow> Create(IHostEnvironment env, IDataView data, bool ignoreMissingColumns, SchemaDefinition schemaDefinition) 334public TypedRowBase(TypedCursorable<TRow> parent, DataViewRow input, string channelMessage) 554public TypedRow(TypedCursorable<TRow> parent, DataViewRow input) 632public TypedCursor(TypedCursorable<TRow> parent, DataViewRowCursor input) 670return TypedCursorable<TRow>.Create(env, data, ignoreMissingColumns, schemaDefinition);
Prediction\PredictionEngine.cs (2)
126var cursorable = TypedCursorable<TDst>.Create(env, new EmptyDataView(env, mapper.OutputSchema), ignoreMissingColumns, outputSchemaDefinition);
Microsoft.ML.TimeSeries (2)
PredictionEngine.cs (2)
222var cursorable = TypedCursorable<TDst>.Create(env, new EmptyDataView(env, mapper.OutputSchema), ignoreMissingColumns, outputSchemaDefinition);
Microsoft.ML.Transforms (9)
CustomMappingFilter.cs (2)
18protected readonly TypedCursorable<TSrc> TypedSrc; 32TypedSrc = TypedCursorable<TSrc>.Create(Host, input, false, null);
CustomMappingTransformer.cs (2)
115private readonly TypedCursorable<TSrc> _typedSrc; 127_typedSrc = TypedCursorable<TSrc>.Create(_host, emptyDataView, false, _parent.InputSchemaDefinition);
StatefulCustomMappingTransformer.cs (2)
109private readonly TypedCursorable<TSrc> _typedSrc; 126_typedSrc = TypedCursorable<TSrc>.Create(Host, input, false, null);
StatefulFilterTransform.cs (3)
40private readonly TypedCursorable<TSrc> _typedSource; 69_typedSource = TypedCursorable<TSrc>.Create(_host, Source, false, inputSchemaDefinition); 85_typedSource = TypedCursorable<TSrc>.Create(_host, newSource, false, transform._inputSchemaDefinition);