-
Notifications
You must be signed in to change notification settings - Fork 1.9k
IFormatProvider in TextLoader #126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Cross-referencing since related: #74 and #109. And since this is a real problem, feeding thoughts: https://www.nuget.org/packages?q=CSV. |
@ddobric You can see it at
I wonder if it were possible to do something like this
The real case would be more complicated and the interface could support, say |
@ddobric you can specify the column separator in the TextLoader, in ML.Net. The culture does not play a factor. |
Please try with the new API in post 1.0 release and let me know if you still see this issue. |
Want to know how TextLoader deals with files in different cultures.
For example, if you are running on OS with culture like "de-de" such files might be loaded incorrectly:
CMT,1,1,1267,6.9,CRD,23
CMT,1,1,1267,6.8,CRD,24
With such cultures (none-invariant) would require files formatted in following way (separator = ';')
CMT;1;1;1267;6,9,CRD;23
CMT;1;1;1267;6,8,CRD;23
The text was updated successfully, but these errors were encountered: