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
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,23 @@
2
2
3
3
All notable changes to `transformers-php` will be documented in this file.
4
4
5
+
## TransformersPHP v0.5.1 - 2024-08-24
6
+
7
+
### What's new
8
+
9
+
-**Tensor Operations**: `magnitude`, `sqrt` and `cosSimilarity` added.
10
+
-**Vips Binaries**: - Vips binaries are now bundled by default, eliminating need to modify anything on the system to use libvips.
11
+
12
+
### Bug Fixes
13
+
14
+
-**Error Handling**: - Adjusted error level to a warning for unknown model types, providing clearer feedback without interrupting the workflow.
15
+
16
+
### Reversions
17
+
18
+
-**Dependencies**: Reverted `rokka/vips` from dev back to normal dependencies. Since vips binaries are bundled by default, use of vips is now encouraged.
I'm excited to announce the latest version of TransformersPHP, packed with new features, improvements, and bug fixes. This release brings powerful enhancements to your machine-learning-driven PHP applications, enabling more efficient and versatile operations.
@@ -21,6 +38,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
21
38
// ]
22
39
// ]
23
40
41
+
24
42
```
25
43
- **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.
26
44
@@ -33,6 +51,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
33
51
// "text" => "We, the people of the United States, ..."
34
52
// ]
35
53
54
+
36
55
```
37
56
38
57
@@ -49,6 +68,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
49
68
$resizedImage = $image->resize(100, 100);
50
69
// $image remains unchanged
51
70
71
+
52
72
```
53
73
- **New Tensor Operations** - New operations were added: `copyTo`, `log`, `exp`, `pow`, `sum`, `reciprocal`, `stdMean`. Additionally, overall performance improvements have been made to Tensor operations.
54
74
@@ -59,7 +79,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
59
79
- **ONNX Runtime Upgrade** - Upgraded to version 1.19.0, bringing more performance and compatibility with newer models.
60
80
61
81
- Bug Fixes & Performance Improvements - Various bug fixes have been implemented to enhance stability and performance across the package.
62
-
82
+
63
83
64
84
I hope you enjoy these updates and improvements. If you encounter any issues or have any suggestions, please don’t hesitate to reach out through our [Issue Tracker](https://github.com/CodeWithKyrian/transformers-php/issues)
0 commit comments