diff --git a/pyproject.toml b/pyproject.toml index 4de9a57b..04ead153 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "swarms" -version = "3.6.6" +version = "3.6.7" description = "Swarms - Pytorch" license = "MIT" authors = ["Kye Gomez "] diff --git a/swarms/models/timm.py b/swarms/models/timm.py index acb7dba3..dc1e41b9 100644 --- a/swarms/models/timm.py +++ b/swarms/models/timm.py @@ -48,7 +48,7 @@ class TimmModel(BaseMultiModalModel): Returns: The shape of the output from the model. """ - model = timm.create_model(self.model, *args, **kwargs) + model = timm.create_model(self.model_name, *args, **kwargs) return model(task) def list_models(self):