DataViewTypeManager Class

Definition

A singleton class for managing the map between ML.NET DataViewType and C# Type. To support custom column type in IDataView, the column's underlying type (e.g., a C# class's type) should be registered with a class derived from DataViewType.

public static class DataViewTypeManager
type DataViewTypeManager = class
Public Class DataViewTypeManager
Inheritance
DataViewTypeManager

Methods

Register(DataViewType, Type, DataViewTypeAttribute)

This function tells that dataViewType should be representation of data in type in ML.NET's type system. The registered type must be a standard C# object's type.

Register(DataViewType, Type, IEnumerable<Attribute>)
Obsolete.
Obsolete.

This function tells that dataViewType should be representation of data in type in ML.NET's type system. The registered type must be a standard C# object's type.

Applies to