fastText icon indicating copy to clipboard operation
fastText copied to clipboard

Windows Build of fastText, library for text representation and classification.

Results 9 fastText issues
Sort by recently updated
recently updated
newest added

Optimization of hyperparameters doesn't work: Unknown argument: -autotune-validation (еtc) this bug was in the original fastext, it has already been fixed. could you rebuild code?

Using the following training and test data: ` # 1 is positive, 0 is negative f = open('train.txt', 'w') f.write('__label__1 i love you\n') f.write('__label__1 he loves me\n') f.write('__label__1 she likes...

After installing those files provided in the link https://github.com/xiamx/fastText/releases Please explain what to do next? I extracted those files but not able to open.. Can anyone tell me the procedure...

I'm trying to train FastText for performing Information Extraction (which is considered as a text classification problem) on a big corpus where the positive examples (speakers) are not organized one...

In order to explore FastText, I prepared a train.txt containing 90 examples tagged with a single label, and a test.txt containing 4 examples. The training is performed successfully, but i...

Facebook published some pretrained vectors that can be used. I have tried running it on this windows version but the command takes a very long time, it's been at least...

My text file exist 1537584 lines, but after the prediction process, there are only 1537490 results. I've already check that my file didn't include any empty line. After I published...

Hi, I am using your fasttext bin version. Everything works fine, esp. applying nn on a model I produced by myself. Trying to use predict or predict-prob on this or...