JFastText icon indicating copy to clipboard operation
JFastText copied to clipboard

Java interface for fastText

Results 49 JFastText issues
Sort by recently updated
recently updated
newest added

I'm currently working on supervised labelling JFastText, and I want to perform some unit test to check if the result of labelling would fit the expected result and has probability...

Is it planed to release a new JFastText version to support fastText ver 0.9.1. Thanks

* Added corresponding implementations of the `loadModel` that copy data from `InputStream`/`URL`/`URI` into temporary file, and load it into fastText; * Added corresponding constructors to simplify code

This PR adds Java binding for the `getSentenceVector`. This method can return subword-based embeddings for OOV words. Comparing to `getWordVector`, even if the input for `getSentenceVector` is OOV, it still...

For example I want to train a big model on hadoop cluster with hdfs, but JFastText cannot access hdfs directly, so the model can never be loaded. It's not the...

Hi, I am trying to write the dump of fasttext model into text files. More specifically the input and output layers (syn0 and syn1 in gensim). Can it be done...

Hi Do you plan to support the new version of FastText 0.2.0? Especially the test-label command? Thanks, Rado

There were some changes in functions.

I could not be able to test print-word-vectors command. While the original is `./fasttext print-word-vectors model.bin < queries.txt`, according to JFastText documentation it should be something like: JFastText jft =...

Hello, How can read a pretrained model? I try to load the preexisting files .vec and .bin, but the load model raises an excpetion. Its looks like the format incompatible...