-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
APIIssues pertaining the friendly APIIssues pertaining the friendly API
Description
#1708 moved CreateEnumerable from extension on top of DataView to become extension on mlContext object.
We still have GetColumn extension
| public static IEnumerable<T> GetColumn<T>(this IDataView data, IHostEnvironment env, string columnName) |
which works on top of DataView. Shall we move it to mlContext?
var enumerable = mlContext.CreateEnumerable<SamplesUtils.DatasetUtils.SampleTemperatureData>(filteredData, reuseRowObject: true);
var originalColumnBack = transformedData_default.GetColumn<VBuffer<ReadOnlyMemory<char>>>(mlContext, defaultColumnName);
They look silly together.
Metadata
Metadata
Assignees
Labels
APIIssues pertaining the friendly APIIssues pertaining the friendly API