Skip to content

Commit 258a90b

Browse files
CodeWithKyriangithub-actions[bot]
authored andcommitted
Update CHANGELOG
1 parent 5a04b2c commit 258a90b

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All notable changes to `transformers-php` will be documented in this file.
44

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.
19+
20+
**Full Changelog**: https://github.com/CodeWithKyrian/transformers-php/compare/0.5.0...0.5.1
21+
522
## TransformersPHP v0.5.0 - 2024-08-21
623

724
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
2138
// ]
2239
// ]
2340

41+
2442
```
2543
- **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.
2644

@@ -33,6 +51,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
3351
// "text" => "We, the people of the United States, ..."
3452
// ]
3553

54+
3655
```
3756

3857

@@ -49,6 +68,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
4968
$resizedImage = $image->resize(100, 100);
5069
// $image remains unchanged
5170

71+
5272
```
5373
- **New Tensor Operations** - New operations were added: `copyTo`, `log`, `exp`, `pow`, `sum`, `reciprocal`, `stdMean`. Additionally, overall performance improvements have been made to Tensor operations.
5474

@@ -59,7 +79,7 @@ I'm excited to announce the latest version of TransformersPHP, packed with new f
5979
- **ONNX Runtime Upgrade** - Upgraded to version 1.19.0, bringing more performance and compatibility with newer models.
6080

6181
- Bug Fixes & Performance Improvements - Various bug fixes have been implemented to enhance stability and performance across the package.
62-
82+
6383

6484
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)
6585

@@ -216,6 +236,7 @@ composer require codewithkyrian/transformers
216236

217237

218238

239+
219240
```
220241
And you must initialize the library to download neccesary libraries for ONNX
221242

@@ -233,6 +254,7 @@ And you must initialize the library to download neccesary libraries for ONNX
233254

234255

235256

257+
236258
```
237259
#### Checkout the Documentation
238260

@@ -256,6 +278,7 @@ To ensure a smooth user experience, especially with larger models, we recommend
256278

257279

258280

281+
259282
```
260283
#### What's Next?
261284

0 commit comments

Comments
 (0)