Skip to content

Commit 4af8e0f

Browse files
committed
Fixed quantization, finished with 1.2
1 parent 4ba1f2d commit 4af8e0f

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/BuildAndPublish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
push:
55
tags:
66
- '*'
7-
branches:
8-
- master
97

108
jobs:
119
test:

FastText.NetWrapper/FastTextWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ internal void Supervised(string inputPath, string outputPath, SupervisedArgs arg
238238
else
239239
{
240240
_maxLabelLen = CheckForErrors(GetMaxLabelLength(_fastText));
241-
ModelPath = AdjustPath(outputPath, false);
241+
ModelPath = AdjustPath(outputPath, !string.IsNullOrEmpty(autotuneArgs.ModelSize));
242242
}
243243
}
244244

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ binary depending on target platform.
1212

1313
## What's new
1414

15-
### `1.2.3-preview`
15+
### `1.2.3`
1616

1717
* Added supervised model quantization with `Quantize` method.
18+
* Stable version released! 🎉
1819

1920
### `1.2.2-preview`
2021

0 commit comments

Comments
 (0)