From 5b23f8e87fca51b90b5c8ee30a6df205b4088c5e Mon Sep 17 00:00:00 2001 From: Leandro Rosemberg Date: Thu, 24 Apr 2025 21:54:20 -0300 Subject: [PATCH 1/5] add support for yolov7 model in model processor --- roboflow/util/model_processor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/roboflow/util/model_processor.py b/roboflow/util/model_processor.py index b2db803e..78227b80 100644 --- a/roboflow/util/model_processor.py +++ b/roboflow/util/model_processor.py @@ -17,6 +17,7 @@ def process(model_type: str, model_path: str, filename: str) -> str: def _get_processor_function(model_type: str) -> Callable: supported_models = [ "yolov5", + "yolov7", "yolov7-seg", "yolov8", "yolov9", From f9357bfb94842039e813287ac34ebae4583c82bf Mon Sep 17 00:00:00 2001 From: Leandro Rosemberg Date: Thu, 24 Apr 2025 21:54:55 -0300 Subject: [PATCH 2/5] bump version to 1.1.62 --- roboflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roboflow/__init__.py b/roboflow/__init__.py index 37a44b09..bcbf24da 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -15,7 +15,7 @@ from roboflow.models import CLIPModel, GazeModel # noqa: F401 from roboflow.util.general import write_line -__version__ = "1.1.61" +__version__ = "1.1.62" def check_key(api_key, model, notebook, num_retries=0): From 3401da1d514ea2d7195f75c8edc5f334ee25acef Mon Sep 17 00:00:00 2001 From: Iuri de Silvio Date: Mon, 28 Apr 2025 16:58:25 -0500 Subject: [PATCH 3/5] bump --- roboflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roboflow/__init__.py b/roboflow/__init__.py index bcbf24da..2abf284a 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -15,7 +15,7 @@ from roboflow.models import CLIPModel, GazeModel # noqa: F401 from roboflow.util.general import write_line -__version__ = "1.1.62" +__version__ = "1.1.63" def check_key(api_key, model, notebook, num_retries=0): From f8569a1ac9fee55452c9be004143e27ef2e6ea82 Mon Sep 17 00:00:00 2001 From: Leandro Rosemberg Date: Tue, 29 Apr 2025 10:25:59 -0500 Subject: [PATCH 4/5] bump version to 1.1.64 --- roboflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roboflow/__init__.py b/roboflow/__init__.py index 2abf284a..f9828fab 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -15,7 +15,7 @@ from roboflow.models import CLIPModel, GazeModel # noqa: F401 from roboflow.util.general import write_line -__version__ = "1.1.63" +__version__ = "1.1.64" def check_key(api_key, model, notebook, num_retries=0): From a1dda4ba20fc629c549acb8a1fdb781fc688c362 Mon Sep 17 00:00:00 2001 From: Leandro Rosemberg Date: Tue, 29 Apr 2025 10:26:53 -0500 Subject: [PATCH 5/5] Revert "bump version to 1.1.64" This reverts commit f8569a1ac9fee55452c9be004143e27ef2e6ea82. --- roboflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roboflow/__init__.py b/roboflow/__init__.py index f9828fab..2abf284a 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -15,7 +15,7 @@ from roboflow.models import CLIPModel, GazeModel # noqa: F401 from roboflow.util.general import write_line -__version__ = "1.1.64" +__version__ = "1.1.63" def check_key(api_key, model, notebook, num_retries=0):