Skip to content

Commit

Permalink
Fixing issue with ST 3.1 and bumping version (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
NohTow authored Oct 17, 2024
1 parent ddaf8f8 commit b89517f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pylate/models/colbert.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def __init__(
)
self[1] = Dense.from_sentence_transformers(dense=self[1])
else:
logger.warning("Pylate model loaded successfully.")
logger.warning("PyLate model loaded successfully.")

# Ensure all tensors in the model are of the same dtype as the first tensor
try:
Expand Down Expand Up @@ -1150,7 +1150,7 @@ def _load_sbert_model(
config_kwargs: dict | None = None,
) -> list[nn.Module]:
"""Create a Sentence Transformer model from a model name or path."""
modules = super()._load_sbert_model(
modules, module_kwargs = super()._load_sbert_model(
model_name_or_path=model_name_or_path,
token=token,
cache_folder=cache_folder,
Expand Down Expand Up @@ -1196,4 +1196,4 @@ def _load_sbert_model(
for module in modules.values()
if isinstance(module, Transformer)
or isinstance(module, DenseSentenceTransformer)
]
], module_kwargs
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()

base_packages = [
"sentence-transformers == 3.0.1",
"sentence-transformers == 3.2.0",
"datasets >= 2.20.0",
"accelerate >= 0.31.0",
"voyager >= 2.0.9",
Expand Down

0 comments on commit b89517f

Please sign in to comment.