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
See code in machinelearning/src/Microsoft.MachineLearning.EntryPoints/TextLoader.cs
private string TypeToName(Type type)
{
if (type == typeof(string))
return "TX";
else if (type == typeof(float) || type == typeof(double))
return "R4";
else
throw new Exception("Type not implemented or supported."); //Add more types.
}
(Refers to Lines 70 to 78 in 6e74d72)
We should fill all supported types out and add tests.