fastrtext icon indicating copy to clipboard operation
fastrtext copied to clipboard

R wrapper for fastText

Results 11 fastrtext issues
Sort by recently updated
recently updated
newest added

Hi there I was trying to install on a fresh OSX installation. As the package isn't on CRAN, I tried to install from Github using devtools, but this fails with...

Hello @pommedeterresautee 👋 I noticed that fastrtext got taken off CRAN a couple of months ago. Do you have any plans for resubmission? If you need anything I would be...

get_analogies() was removed (for what?), so what to use instead of it for work with linguistic regularities?

Hi there, I am using load_model() function to load a [Chinese fastText pre-trained model](https://fasttext.cc/docs/en/crawl-vectors.html), and here is the command I used: `model

I am running the unsupervised learning algorithm on - 350k Mails and 55 Categories ``` execute( commands = c("supervised", "-input", train_tmp_file_txt, "-output", tmp_file_model, "-dim", 100, "-lr", 1, "-epoch", 20, "-wordNgrams",...

Hi there, I saw on the Fasttext page here they've added an autotune feature, which automatically optimizes the various hyperparameters. Seems it can be activated with the ```-autotune-validation``` option, which...

Hello~ I am wondering if there's a build-in function inside fastrtext package similar as get_nn that can find similar documents not just similar words. Thanks!

In my execute, I'm able to easily tell fastRtext to use bigrams, per the instructions/commands for fasttext: ``` execute( commands = c( "skipgram", "-input", tmp_file_txt, "-output", tmp_file_model, "-verbose", 1, "-wordNgrams",...

https://github.com/facebookresearch/fastText/blob/master/src/fasttext.cc#L567

Hi, I found that in supervised learning, if I include params -pretrainedVector the load times for this command is painstakingly slow. Without it it is very quick. My pretrainedVector is...