I am trying to use ML.Net with a csv file. The file contains
- price data (decimal)
- Enum's (different types as string)
- Statistical data (float)
I'm trying to follow the sample provided in MlNetCookBook however I can't use
FeatureVector: r.DecimalField1.ConcatWith(r.DecimalField2, r.EnumType1,r.EnumType2,r.FloatField1,...)
as the types are not compatible and I would like to "Dictionarizer" the enum values.
does anyone know how this should be configured with the new API?
Thanks