Skip to content

Commit 74885a2

Browse files
authored
Merge pull request #375 from roboflow/lean/add-yolov7-support
Adds support for yolov7 model upload
2 parents 33b2890 + a1dda4b commit 74885a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

roboflow/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from roboflow.models import CLIPModel, GazeModel # noqa: F401
1616
from roboflow.util.general import write_line
1717

18-
__version__ = "1.1.62"
18+
__version__ = "1.1.63"
1919

2020

2121
def check_key(api_key, model, notebook, num_retries=0):

roboflow/util/model_processor.py

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def process(model_type: str, model_path: str, filename: str) -> str:
1717
def _get_processor_function(model_type: str) -> Callable:
1818
supported_models = [
1919
"yolov5",
20+
"yolov7",
2021
"yolov7-seg",
2122
"yolov8",
2223
"yolov9",

0 commit comments

Comments
 (0)