22
33All notable changes to ` transformers-php ` will be documented in this file.
44
5+ ## v0.3.0 - 2024-04-13
6+
7+ ### What's Changed
8+
9+ * Add Image Classification pipelines support by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/9
10+ * Add Zero shot Image Classification pipelines support by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/9
11+ * Add New Image Driver - VIPS by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/10
12+ * Add Object Detection Pipeline by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/11
13+ * Download ONNXRuntime automatically after composer install by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/12
14+ * Add Zero Shot Object Detection Pipeline and OwlVit models by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/14
15+ * Improve tensor performance by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/13
16+ * Set [ MASK] usage in prompts for default Xenova/bert-base-uncased model by @takielias in https://github.com/CodeWithKyrian/transformers-php/pull/15
17+ * Add image feature extraction pipeline by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/16
18+ * Add image to image pipeline by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/17
19+ * bugfix: https slashes affected when joining paths by @CodeWithKyrian in https://github.com/CodeWithKyrian/transformers-php/pull/19
20+
21+ ### Breaking Changes
22+
23+ * The install command no longer exists, as the required libraries are downloaded automatically on composer install.
24+ * New Image driver configuration settings added that required either GD, Imagick or Vips
25+
26+ ### New Contributors
27+
28+ * @takielias made their first contribution in https://github.com/CodeWithKyrian/transformers-php/pull/15
29+
30+ ** Full Changelog** : https://github.com/CodeWithKyrian/transformers-php/compare/0.2.2...0.3.0
31+
532## v0.2.2 - 2024-03-25
633
734### What's new
@@ -55,6 +82,7 @@ composer require codewithkyrian/transformers
5582
5683
5784
85+
5886```
5987And you must initialize the library to download neccesary libraries for ONNX
6088
@@ -64,6 +92,7 @@ And you must initialize the library to download neccesary libraries for ONNX
6492
6593
6694
95+
6796```
6897#### Checkout the Documentation
6998
@@ -79,6 +108,7 @@ To ensure a smooth user experience, especially with larger models, we recommend
79108
80109
81110
111+
82112```
83113#### What's Next?
84114
0 commit comments