Skip to content

Releases: clementpoiret/Equimo

v0.3.5 - Fix incomplete pypi package

09 Apr 15:32
6b56fc6
Compare
Choose a tag to compare

v0.3.3 - DyT and bug fixes

26 Mar 16:06
e2d9b05
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.0...v0.3.3

v0.3.0 - Experimental text embedding support

14 Mar 11:45
4c128a0
Compare
Choose a tag to compare

This release adds support for text embedding support. It adds a text-compatible transformer and a tokenizer (from tensorflow_text). This enables many workflows when working on both images and text.

The first compatible model is TIPS. SigLIP2 text will come later.

What's Changed

Full Changelog: v0.2.4...v0.3.0

v0.2.4 - Add support for TIPS pretrained weights

11 Mar 18:54
5d85629
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.3...v0.2.4

v0.2.3 - Support Pretrained SigLIP 2

24 Feb 20:07
3b1908d
Compare
Choose a tag to compare

What's Changed

  • Add support for SigLIP 2 without NaFlex by @clementpoiret in #8
  • Add support for loading torch models from timm
  • Add support for serializing act functions (required to load some SigLIP models)
  • Allows passing kwargs to load_model to override saved metadata

Full Changelog: v0.2.2...v0.2.3

v0.2.2 - Minor bug fix

19 Feb 16:08
4cd0304
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.1...v0.2.2

v0.2.1 - Fix Dinov2 Giant SwiGLU

19 Feb 14:37
858512c
Compare
Choose a tag to compare

Dinov2 Giant can now be loaded correctly using:

from equimo.io import load_model

model = load_model(cls="vit", identifier="dinov2_vitg14_reg")

What's Changed

Full Changelog: v0.2.0...v0.2.1

v0.2.0 - Support pretrained models

18 Feb 17:57
c38b5d1
Compare
Choose a tag to compare

Equimo now supports converting and loading weights from PyTorch Hub!
Currently, only dinov2 can be loaded.

What's Changed

New Contributors

Full Changelog: v0.1.2...v0.2.0

v0.1.2 - VSSD norm fix

10 Dec 16:36
01f1530
Compare
Choose a tag to compare

v0.1.1 - Uniform `feature()` API in model's classes

10 Dec 10:45
056bd07
Compare
Choose a tag to compare

This release ensure all models consistently have a feature() method which doesn't call self.norm and self.head on x.

Full Changelog: v0.1.0...v0.1.1