From 3ff1faf10b60be27252be7f6c84ce7c8c5e14ec8 Mon Sep 17 00:00:00 2001 From: Romain Beaumont Date: Mon, 8 Jan 2024 11:35:29 +0100 Subject: [PATCH] Release 2.24.0 (#784) --- HISTORY.md | 13 +++++++++++++ src/open_clip/version.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index fc805eecb..329452ddd 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,16 @@ +## 2.24.0 + +* Fix missing space in error message +* use model flag for normalizing embeddings +* init logit_bias for non siglip pretrained models +* Fix logit_bias load_checkpoint addition +* Make CoCa model match CLIP models for logit scale/bias init +* Fix missing return of "logit_bias" in CoCa.forward +* Add NLLB-CLIP with SigLIP models +* Add get_logits method and NLLB tokenizer +* Remove the empty file src/open_clip/generation_utils.py +* Update params.py: "BatchNorm" -> "LayerNorm" in the description string for "--lock-text-freeze-layer-norm" + ## 2.23.0 * Add CLIPA-v2 models diff --git a/src/open_clip/version.py b/src/open_clip/version.py index d0c0c4765..78afda850 100644 --- a/src/open_clip/version.py +++ b/src/open_clip/version.py @@ -1 +1 @@ -__version__ = '2.23.0' +__version__ = '2.24.0'