Reputation: 146
Is there a way in Weka 3.7.13 to load UTF-8 encoded files without converting them to ANSII?
I am trying to load a csv file containing a string attribute, whose value can contain emoticons, and I need not to lose them.
Upvotes: 1
Views: 2769
Reputation: 751
Just for completeness, if you are using weka programmatically, you need to change your IDE
's encoding to utf-8
in order to handle utf-8
encoded data.
Upvotes: 0