vinhkhuc / JFastText

Java interface for fastText

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect Method Call in getLabels

emeth-kim opened this issue · comments

There is a minor bug in the getLabels method.

public List<String> getLabels() {
return stringVec2Strings(fta.getWords());
}

should be

public List<String> getLabels() { 
    return stringVec2Strings(fta.getLabels()); 
}