Skip to content

Commit 20ad574

Browse files
author
pfeatherstone
committed
licenses
1 parent 795dfb0 commit 20ad574

File tree

3 files changed

+93
-1
lines changed

3 files changed

+93
-1
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Peter Featherstone
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,11 @@ onnx2tf -i /tmp/model.onnx -ois "img:1,3,640,640" -o /tmp/model
157157
## TODO ##
158158

159159
- [ ] Train everything (probably going to need some cloud compute (help))
160-
- [ ] Train with mixed precision
160+
- [ ] Train with mixed precision
161+
162+
## License
163+
164+
This project is licensed under the MIT License. See the LICENSE file for details.
165+
166+
Pretrained weights downloaded by helper scripts are subject to their own
167+
licenses. See THIRD_PARTY_NOTICES.md for details.

THIRD_PARTY_NOTICES.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Third-Party Notices
2+
3+
This project includes scripts that download or reference pretrained model
4+
weights from third-party projects. These weights are **not** covered by the
5+
license of this repository and remain subject to their original licenses.
6+
7+
Users are responsible for complying with the terms of the respective licenses
8+
when using these assets.
9+
10+
---
11+
12+
## Ultralytics YOLO
13+
14+
Source: https://github.com/ultralytics/ultralytics
15+
License: GNU General Public License v3.0 (GPL-3.0)
16+
17+
Pretrained weights are downloaded from Ultralytics repositories and are
18+
licensed under the GPL-3.0. Use of these weights may impose copyleft
19+
requirements on downstream applications.
20+
21+
---
22+
23+
## Darknet (YOLOv3 / YOLOv4)
24+
25+
Source: https://github.com/pjreddie/darknet
26+
License: MIT License
27+
28+
Pretrained yolov3 weights associated with Darknet are provided under the MIT License.
29+
30+
---
31+
32+
## Darknet ()
33+
34+
Source: https://github.com/AlexeyAB/darknet
35+
License: YOLO LICENSE
36+
37+
Pretrained yolov4 weights associated with Darknet are provided under the YOLO license.
38+
39+
40+
## YOLOv7
41+
42+
Source: https://github.com/WongKinYiu/yolov7
43+
License: GNU General Public License v3.0 (GPL-3.0)
44+
45+
Pretrained YOLOv7 weights are licensed under GPL-3.0. Use of these weights may
46+
impose copyleft requirements on derivative works.
47+
48+
---
49+
50+
## YOLOv6
51+
52+
Source: https://github.com/meituan/YOLOv6
53+
License: Apache License 2.0
54+
55+
Pretrained YOLOv6 weights are licensed under Apache-2.0.
56+
57+
---
58+
59+
## Disclaimer
60+
61+
This repository does not distribute third-party weights directly. It provides
62+
convenience scripts that download assets from their original sources. All
63+
third-party trademarks, logos, and model names remain the property of their
64+
respective owners.

0 commit comments

Comments
 (0)