diff --git a/mteb/models/model_implementations/colqwen_models.py b/mteb/models/model_implementations/colqwen_models.py index e285a80c6b..95783623c8 100644 --- a/mteb/models/model_implementations/colqwen_models.py +++ b/mteb/models/model_implementations/colqwen_models.py @@ -329,32 +329,6 @@ def similarity(self, a, b): citation=TOMORO_CITATION, ) -colnomic_7b = ModelMeta( - loader=ColQwen2_5Wrapper, - loader_kwargs=dict( - torch_dtype=torch.float16, - ), - name="nomic-ai/colnomic-embed-multimodal-7b", - model_type=["late-interaction"], - languages=["eng-Latn"], - revision="530094e83a40ca4edcb5c9e5ddfa61a4b5ea0d2f", - release_date="2025-03-31", - modalities=["image", "text"], - n_parameters=7_000_000_000, - memory_usage_mb=14400, - max_tokens=128000, - embed_dim=128, - license="apache-2.0", - open_weights=True, - public_training_code="https://github.com/nomic-ai/colpali", - public_training_data="https://huggingface.co/datasets/vidore/colpali_train_set", - framework=["ColPali", "safetensors"], - reference="https://huggingface.co/nomic-ai/colnomic-embed-multimodal-7b", - similarity_fn_name="MaxSim", - use_instructions=True, - training_datasets=COLPALI_TRAINING_DATA, - citation=COLPALI_CITATION, -) COLNOMIC_CITATION = """ @misc{nomicembedmultimodal2025, @@ -402,7 +376,7 @@ def similarity(self, a, b): ) colnomic_7b = ModelMeta( - loader=ColQwen2Wrapper, + loader=ColQwen2_5Wrapper, loader_kwargs=dict( torch_dtype=torch.float16, ),