- remove deprecated code to fix Cran warnings
- update to last FastText version
- support one vs all loss
- less macro (remove possibility to stop learning with CTRL+C)
- following Cran email, remove debug symbols stripping
- make unit tests stronger
- update the C++ source code to the current fassttext version
- remove analogies function
- update error message
- add function to add prefix to words (to create different spaces in the same dataset, useful for classification in particular)
- simplify tests
- use -pthread flag for better Cran compliancy
- add get word id function
- add tokenizer function
- change the way sentence vector are computed (use fastText internal code to improve speed)
- remove RcppThread due to change in FB source code (no more print from multiple at the same time thread)
- add possibility to interrupte learning
- major refactoring
- update to last version of fastText sourcecode
- sentence representation function
- add tags function
- fix compilation on Windows R Dev
- better Makevars (related to strippedLib task)
- fix a cran note related to the DESCRIPTION file
- remove documentation not anymore useful because of previous update
- add some asserts to avoid the case where some sentences have no prediction because all their words are unknown (not seen during training)
- fix compilation on Mac OS
- make possible to interrupt long computation (not for model training part)
- add simplify option to predict (to get flat vector as a result)
- remove prefix label in predict result
- update fastText source code
- fix crash when learning and setting verbose to 2 (calling Rcout from multiple threads crash the application)
- fix small bugs in compilation (mostly for mac os)
- remove all notes (Cran)
- first Cran release
- covers all basic features of fastText