Skip to content

Instantly share code, notes, and snippets.

@elbruno
Created October 10, 2018 20:38
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 elbruno/3288e677e2f49273821e331fabae752f to your computer and use it in GitHub Desktop.
Save elbruno/3288e677e2f49273821e331fabae752f to your computer and use it in GitHub Desktop.
MLNetAgeRangesClasses.cs
public class AgeRangeData
{
[Column(ordinal: "0")]
public float AgeStart;
[Column(ordinal: "1")]
public float AgeEnd;
[Column(ordinal: "2", name: "Label")]
public string Label;
}
public class AgeRangePrediction
{
[ColumnName("PredictedLabel")]
public string PredictedLabels;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment