Skip to content

Latest commit

 

History

History
71 lines (38 loc) · 2.21 KB

CHANGELOG.md

File metadata and controls

71 lines (38 loc) · 2.21 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[0.18.1] - 2024-06-06

Fixed

  • Internal package updates.

[0.18.0] - 2024-05-22

Added

  • import_transformers_js also accepts a URL not only a version string, #164.
  • TjsTensorProxy now supports slicing, #163.

[0.17.1] - 2024-05-03

Fixed

  • numpy typing in the audio module, #152.

[0.17.0] - 2024-05-02

Added

  • Make TjsProxy a subclass of collections.abc.Mapping, #151.

[0.16.0] - 2024-05-01

Added

  • TjsProxy.__repr__, #149.

[0.15.0] - 2024-05-01

Added

  • Set numpy and scipy as [audio] extra dependencies, #148.

[0.14.0] - 2024-04-27

Added

  • LazyImportTjsProxy.__call__ now supports calling a synchronous proxied function, #147.

[0.13.0] - 2024-04-27

Fixed

  • Add the lazy-import proxy to the transformers_js alias module too, #144.
  • Rename LazyImportProxy to LazyImportTjsProxy, #145.
  • Rename get_deferred_import_proxy to get_lazy_import_tjs_proxy, #146

[0.12.0] - 2024-04-26

Added

  • Support direct importing of the proxied objects such as pipeline() from the transformers_js_py module by deferring the async import of the Transformers.js library internally until the first call of the proxied object, #142.

[0.11.0] - 2024-04-16

Changed

  • Rename TjsTensorProxy.numpy() to TjsTensorProxy.to_numpy() for consistency.