Skip to content

Commit 77b81a5

Browse files
committed
Merge branch 'main' of github.com:RapidAI/YOLO2COCO
2 parents ee76fa6 + c0473d3 commit 77b81a5

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Apache License

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,6 @@
3838
python coco_visual.py --vis_num 1 \
3939
--json_path dataset/YOLOV5_COCO_format/annotations/instances_train2017.json \
4040
--img_dir dataset/YOLOV5_COCO_format/train2017
41-
```
41+
```
42+
43+

darknet2coco.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(self,genconfig_data):
4040
self.licenses = [{
4141
'id': 1,
4242
'name': 'GNU General Public License v3.0',
43-
'url': 'https://github.com/zhiqwang/yolov5-rt-stack/blob/master/LICENSE',
43+
'url': 'https://github.com/RapidAI/YOLO2COCO/LICENSE',
4444
}]
4545

4646
if not Path(self.dst).is_dir():
@@ -307,4 +307,4 @@ def generate(self):
307307
converter = DARKNET2COCO(args.data_path)
308308
else:
309309
converter = YOLO2COCO(args.data_path)
310-
converter.generate()
310+
converter.generate()

0 commit comments

Comments
 (0)