Skip to content

Releases: olegtarasov/FastText.NetWrapper

1.3.1

03 Oct 06:33
Compare
Choose a tag to compare

Updated fastText binaries with latest improvements from the Facebook repo.

Training and autotune progress callbacks

09 Apr 06:14
Compare
Choose a tag to compare

This release adds training and autotune progress callbacks. See the README for instructions on how to use them. There is also a new option to stop stderr output from autotune process.

Major feature update with redesigned API, model testing, quantization and autotuning

12 Jul 13:30
Compare
Choose a tag to compare

What's new

1.2.3

  • Added supervised model quantization with Quantize method.
  • Stable version released! 🎉

1.2.2-preview

  • Merged #20 with new GetWordVector method.

1.2.1-preview

  • Added model autotuning with quantization support.
  • Fixed a horrible bug with bool marshalling.

1.2.0-preview

Version 1.2.0 introduces a few breaking changes to library API. If you are not ready to migrate, use v. 1.1.2.

  • ❗️Breaking change:️ Removed both deprecated Train() methods.
  • ❗️Breaking change:️ Removed deprecated SupervisedArgs class.
  • ❗️Breaking change:️ Removed FastTextArgs.SupervisedDefaults() in favor of new SupervisedArgs with default constructor.
  • ❗️Breaking change:️ FastTextArgs class can't be constructed directly, use new SupervisedArgs and UnsupervisedArgs classes.
  • Added an Unsupervised() method to train Skipgram or Cbow models.

1.1.2

  • Fixed a horrible bug with bool marshalling on a 1.1.* branch.

1.1.0, 1.1.1

  • Added new Supervised() method as part of streamlining the API.
  • Added new Test() method for testing supervised model.
  • Deprecated both Train() methods. They will be removed in v. 1.2.0.

1.0.38

  • Fixed a horrible bug with bool marshalling on a 1.0.* branch.

Version 1.2.0 migration guide

  • Instead of old Train() methods use Supervised() and Unsupervised() methods.
  • Instead of FastTextArgs.SupervisedDefaults() use SupervisedArgs or Supervised() overload with 2 arguments.

1.0.37

09 Mar 15:52
Compare
Choose a tag to compare
Merge branch 'NoorDigitalAgency-master'

1.0.35

09 Feb 05:49
Compare
Choose a tag to compare
Added licence to the NuGet package

1.0.34

24 Aug 18:50
Compare
Choose a tag to compare
Added more granular checks for loaded model status and type (supervis…

1.0.33

12 Jun 12:51
Compare
Choose a tag to compare
Using stable versions of Linux and MacOs binaries (no -march=native),…

1.0.32

10 Jun 19:57
Compare
Choose a tag to compare
Fixed Windows binary which accidentally turned out to be x32. Also ha…

1.0.25

09 Jun 19:32
Compare
Choose a tag to compare
Fixed readme [no ci]

1.0.19

30 Apr 12:03
d50f6b5
Compare
Choose a tag to compare
Merge pull request #7 from dhohmeyer/LoadLibraryErrorHandling

Load Library Error Handling