Skip to content

Commit

Permalink
feat: replace 8m by 32m for training
Browse files Browse the repository at this point in the history
  • Loading branch information
stephantul committed Feb 11, 2025
1 parent 370f0ab commit acd24d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model2vec/train/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def construct_head(self) -> nn.Sequential:

@classmethod
def from_pretrained(
cls: type[ModelType], out_dim: int = 2, model_name: str = "minishlab/potion-base-8m", **kwargs: Any
cls: type[ModelType], out_dim: int = 2, model_name: str = "minishlab/potion-base-32m", **kwargs: Any
) -> ModelType:
"""Load the model from a pretrained model2vec model."""
model = StaticModel.from_pretrained(model_name)
Expand Down

0 comments on commit acd24d7

Please sign in to comment.