Skip to content

Instantly share code, notes, and snippets.

@AbhiOnGithub
Created July 15, 2018 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhiOnGithub/cfc40065a4c5d541440fca8377e16d10 to your computer and use it in GitHub Desktop.
Save AbhiOnGithub/cfc40065a4c5d541440fca8377e16d10 to your computer and use it in GitHub Desktop.
IrisData Class
public class IrisData
{
[Column("0")]
public float SepalLength;
[Column("1")]
public float SepalWidth;
[Column("2")]
public float PetalLength;
[Column("3")]
public float PetalWidth;
[Column("4")]
[ColumnName("Label")]
public string Label;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment