Skip to content

Releases: Cornerstone-OnDemand/modelkit

v0.0.25

01 Sep 14:16
Compare
Choose a tag to compare

What's Changed

  • Make asset requirements for remote storage optional #167
  • tf_serving_fixture expects a new parameter: version of the tensorflow/serving image (used to be pinned to v2.4.0) #162

This version contains breaking changes:

  • if you are using a remote storage, check this part of the documentation to understand the new optional dependencies.

Full Changelog: v0.0.24...v0.0.25

v0.0.24

29 Jun 15:44
Compare
Choose a tag to compare
Bump version: 0.0.23 → 0.0.24

v0.0.21

17 Jan 11:00
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.20...v0.0.21

v0.0.20

06 Jan 08:44
Compare
Choose a tag to compare

What's Changed

  • Support usage of inheritance for model definitions by @ldeflandre in #128
  • Intuitive abstract support by stopping support of no CONFIGURATIONS by @ldeflandre in #129

Full Changelog: v0.0.19...v0.0.20

v0.0.19

20 Dec 17:03
Compare
Choose a tag to compare

What's Changed

  • configurations: allow models without CONFIGURATIONS dict by @victorbenichoux in #123
  • Raise ModelsNotFound exception when Model is not found by @tgenin in #125
  • Enable read-only filesystem when assets do not need to be downloaded by @ldeflandre in #127

New Contributors

Full Changelog: v0.0.18...v0.0.19

v0.0.18

09 Dec 15:50
Compare
Choose a tag to compare

This release includes:

  • a fix to be able to install and use modelkit on apple silicon #119
  • a new storage driver to support azure blob storage

v0.0.17

30 Nov 14:33
Compare
Choose a tag to compare
Bump version: 0.0.16 → 0.0.17

v0.0.16

17 Nov 10:00
Compare
Choose a tag to compare
Bump version: 0.0.15 → 0.0.16

v0.0.11

24 Jun 08:19
Compare
Choose a tag to compare
  • validation of downloads in ASSETS_DIR with .SUCCESS files
  • MODELKIT_STORAGE_FORCE_DOWNLOAD to force download of remote assets
  • MODELKIT_STORAGE_TIMEOUT to control timeout on storage download lock
  • Improved debug level logs when fetching assets

Second release

07 Jun 15:55
Compare
Choose a tag to compare

This is quite a major update, with numerous breaking changes.

  • separated sync and async Models for clarity (#10)
  • reworked batching predict logic: predict no longer automatically switches between single items and batches. Model.predict takes single items, predict_batch only accepts lists of items, and predict_gen knows how to deal with generators (#15, #16, #19, #20)
  • caching with native python caches now available (#22, #23)
  • documentation improvements