From bb4b55dcfd067fc6cd3e81b387a4a4db66c33dd6 Mon Sep 17 00:00:00 2001 From: Kye Date: Fri, 19 Jan 2024 12:03:39 -0500 Subject: [PATCH] [BUFG][TimmModel] --- pyproject.toml | 2 +- swarms/models/timm.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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):