Skip to content

Adds support for yolov7 model upload #375

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 29, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion roboflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
1 change: 1 addition & 0 deletions roboflow/util/model_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down