Skip to content

Commit

Permalink
improve coco to yolov5 conversion (#203)
Browse files Browse the repository at this point in the history
* Update setup.py

* Update setup.py

* Update requirements.txt

* increase version
  • Loading branch information
fcakyon authored Jan 5, 2023
1 parent f5a176d commit 4a5d5cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ fire
# AWS
boto3>=1.19.1
# coco to yolov5 conversion
sahi>=0.11.9
sahi>=0.11.10
# huggingface
huggingface-hub>=0.11.1
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,29 +33,29 @@ def get_version():
long_description_content_type="text/markdown",
url="https://github.com/fcakyon/yolov5-pip",
packages=setuptools.find_packages(exclude=["tests"]),
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=get_requirements(),
extras_require={"tests": ["pytest"]},
include_package_data=True,
options={'bdist_wheel':{'python_tag':'py36.py37.py38'}},
options={'bdist_wheel':{'python_tag':'py37.py38.py39.py310'}},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
],
keywords="machine-learning, deep-learning, ml, pytorch, YOLO, object-detection, vision, YOLOv3, YOLOv4, YOLOv5",
keywords="machine-learning, deep-learning, ml, pytorch, YOLO, object-detection, vision, YOLOv5, YOLOv7",
entry_points={'console_scripts': [
"yolov5=yolov5.cli:app",
],
Expand Down
2 changes: 1 addition & 1 deletion yolov5/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from yolov5.helpers import YOLOv5
from yolov5.helpers import load_model as load

__version__ = "7.0.6"
__version__ = "7.0.7"

0 comments on commit 4a5d5cb

Please sign in to comment.