vinhkhuc / JFastText

Java interface for fastText
Other
228 stars 100 forks source link

Incorrect Method Call in getLabels #68

Open emeth-kim opened 10 months ago

emeth-kim commented 10 months ago

There is a minor bug in the getLabels method.

https://github.com/vinhkhuc/JFastText/blob/130e5e0243e8946124ba8bfa7ab81175bb1995b7/src/main/java/com/github/jfasttext/JFastText.java#L108-L110

should be

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