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
If I train the arktweet POS tagger with e.g. German locale (cf. train method), the training process fails because it generates a file containing decimals with German formatting. For example, numbers like 0.2 are formatted as 0,2 (German notation) and the trainer component fails to load this file because of the comma.
The text was updated successfully, but these errors were encountered:
Hm. Maybe the locale has to be set as a java flag or property? Or it would be better to use non-locale-dependent, floating point number parsing code. I have no idea how to do that in java.
If I train the arktweet POS tagger with e.g. German locale (cf. train method), the training process fails because it generates a file containing decimals with German formatting. For example, numbers like
0.2
are formatted as0,2
(German notation) and the trainer component fails to load this file because of the comma.The text was updated successfully, but these errors were encountered: