Skip to content

Commit 88c3c2e

Browse files
committed
update yolov8-lite
1 parent 11aa724 commit 88c3c2e

File tree

186 files changed

+3185
-1406
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+3185
-1406
lines changed

β€Žultralytics/__init__.pyβ€Ž

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
2-
3-
__version__ = '8.0.66'
4-
5-
from ultralytics.hub import start
6-
from ultralytics.yolo.engine.model import YOLO
7-
from ultralytics.yolo.utils.checks import check_yolo as checks
8-
9-
__all__ = '__version__', 'YOLO', 'checks', 'start' # allow simpler import
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
2+
3+
__version__ = '8.0.85'
4+
5+
from ultralytics.hub import start
6+
from ultralytics.yolo.engine.model import YOLO
7+
from ultralytics.yolo.utils.checks import check_yolo as checks
8+
9+
__all__ = '__version__', 'YOLO', 'checks', 'start' # allow simpler import
0 Bytes
Binary file not shown.

β€Žultralytics/datasets/Argoverse.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# Argoverse-HD dataset (ring-front-center camera) http://www.cs.cmu.edu/~mengtial/proj/streaming/ by Argo AI
33
# Example usage: yolo train data=Argoverse.yaml
44
# parent

β€Žultralytics/datasets/GlobalWheat2020.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# Global Wheat 2020 dataset http://www.global-wheat.com/ by University of Saskatchewan
33
# Example usage: yolo train data=GlobalWheat2020.yaml
44
# parent

β€Žultralytics/datasets/ImageNet.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# ImageNet-1k dataset https://www.image-net.org/index.php by Stanford University
33
# Simplified class names from https://github.com/anishathalye/imagenet-simple-labels
44
# Example usage: yolo train task=classify data=imagenet

β€Žultralytics/datasets/Objects365.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# Objects365 dataset https://www.objects365.org/ by Megvii
33
# Example usage: yolo train data=Objects365.yaml
44
# parent

β€Žultralytics/datasets/SKU-110K.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# SKU-110K retail items dataset https://github.com/eg4000/SKU110K_CVPR19 by Trax Retail
33
# Example usage: yolo train data=SKU-110K.yaml
44
# parent

β€Žultralytics/datasets/VOC.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC by University of Oxford
33
# Example usage: yolo train data=VOC.yaml
44
# parent

β€Žultralytics/datasets/VisDrone.yamlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# VisDrone2019-DET dataset https://github.com/VisDrone/VisDrone-Dataset by Tianjin University
33
# Example usage: yolo train data=VisDrone.yaml
44
# parent
@@ -56,7 +56,7 @@ download: |
5656
cls = int(row[5]) - 1
5757
box = convert_box(img_size, tuple(map(int, row[:4])))
5858
lines.append(f"{cls} {' '.join(f'{x:.6f}' for x in box)}\n")
59-
with open(str(f).replace(os.sep + 'annotations' + os.sep, os.sep + 'labels' + os.sep), 'w') as fl:
59+
with open(str(f).replace(f'{os.sep}annotations{os.sep}', f'{os.sep}labels{os.sep}'), 'w') as fl:
6060
fl.writelines(lines) # write label.txt
6161
6262

β€Žultralytics/datasets/coco-pose.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ultralytics YOLO πŸš€, GPL-3.0 license
1+
# Ultralytics YOLO πŸš€, AGPL-3.0 license
22
# COCO 2017 dataset http://cocodataset.org by Microsoft
33
# Example usage: yolo train data=coco-pose.yaml
44
# parent

0 commit comments

Comments
Β (0)