You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should have a doc that describes exactly how we go from
public class IrisData
{
[Column("0")]
public float Label;
[Column("1")]
public float SepalLength;
[Column("2")]
public float SepalWidth;
[Column("3")]
public float PetalLength;
[Column("4")]
public float PetalWidth;
}
to the schema of the data view. It should cover:
Why field types are important, and how they are used
What exactly is ColumnAttribute, ColumnNameAttribute
Handling of vectors and VectorTypeAttribute
Handling of key types and KeyTypeAttribute
SchemaDefinition as a means of runtime schema hints.
Limitations / what can not be done.
The text was updated successfully, but these errors were encountered:
We should have a doc that describes exactly how we go from
to the schema of the data view. It should cover:
ColumnAttribute
,ColumnNameAttribute
VectorTypeAttribute
KeyTypeAttribute
SchemaDefinition
as a means of runtime schema hints.The text was updated successfully, but these errors were encountered: