You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,34 @@
2
2
3
3
All notable changes to `transformers-php` will be documented in this file.
4
4
5
+
## TransformersPHP v0.5.3 - 2024-09-27
6
+
7
+
This release brings new features, critical bug fixes, and improvements to enhance the functionality and performance of the package. Below is a summary of the changes.
8
+
9
+
### What's New
10
+
11
+
-**feat**: Add support for PostProcessor Sequence by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/2cf18ccd83ad84ad8389a7f8c0198252d523f3f6
12
+
-**feat**: New tensor method `random` by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/0564dd1609db203d4665a4c040cf1b55e4503ac9
13
+
-**feat**: Correctly parse and use the Precompiled Normalizer by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/7e880dd9917b074d995feb98aed9bd41754429ff
14
+
-**feat**: Update conversion notebook to include task by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/ca6fc3b72a688ba739a6d62c062b406e7d821d25
15
+
16
+
### Bug Fixes
17
+
18
+
-**fix**: Regex bug in Precompiled Normalizer by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/69089b124b299a7b7bef49b676ee5951ac7ef7fb
19
+
-**fix**: Improve Unigram Tokenizer handling of multibyte strings by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/e8a8a9ab48e81692d77260197b42e15f768df086
20
+
-**fix**: Correct WhitespaceSplit Pretokenizer handling of invisible space characters by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/6ec3e3e9016952913a951d838b237bfb425e07a9
21
+
-**fix**: Correctly handle multibyte strings in Precompiled Normalizer by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/bee47e01858b4c69e34eb061c571498c9e0a4e14
22
+
-**fix**: Fuse function not combining unknown token IDs correctly by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/300801334cce6f67651665957e776764584db8bc
23
+
-**fix**: Tensor topK error when -1 is passed by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/commit/0564dd1609db203d4665a4c040cf1b55e4503ac9
24
+
25
+
### Improvements
26
+
27
+
-**fix**: Precompiled Normalizer improvements by @CodeWithKyrianhttps://github.com/CodeWithKyrian/transformers-php/commit/b01240076ddd50637b1135d3c5e9e55dab08a592
28
+
29
+
I encourage everyone to update to this latest version and explore the new features. As always, feel free to report any issues or contribute to the project.
@@ -55,6 +83,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
55
83
56
84
57
85
86
+
58
87
```
59
88
- **New Pipeline: Automatic Speech Recognition (ASR)** - Supports models like `wav2vec` and `whisper` for transcribing speech to text. If a specific model is not officially supported, please open an issue with a feature request.
60
89
@@ -69,6 +98,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
69
98
70
99
71
100
101
+
72
102
```
73
103
74
104
@@ -87,6 +117,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
87
117
88
118
89
119
120
+
90
121
```
91
122
- **New Tensor Operations** - New operations were added: `copyTo`, `log`, `exp`, `pow`, `sum`, `reciprocal`, `stdMean`. Additionally, overall performance improvements have been made to Tensor operations.
0 commit comments