Initial upload
Browse files- LICENSE +21 -0
- LibreYOLO9E2Et.pt +3 -0
- README.md +37 -0
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2024 Kin-Yiu Wong and Hao-Tang Tsui
|
| 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.
|
LibreYOLO9E2Et.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f537fb6077cfff64d6f52c8342c9067bf32a5e92953dbac663c1124f8eec7403
|
| 3 |
+
size 15888201
|
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: libreyolo
|
| 4 |
+
tags:
|
| 5 |
+
- object-detection
|
| 6 |
+
- yolov9
|
| 7 |
+
- nms-free
|
| 8 |
+
- end-to-end
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# LibreYOLO9E2Et
|
| 12 |
+
|
| 13 |
+
YOLOv9 end-to-end (NMS-free) variant, size-t, for LibreYOLO.
|
| 14 |
+
|
| 15 |
+
## Source
|
| 16 |
+
|
| 17 |
+
Backbone, neck and one-to-many head derived from
|
| 18 |
+
[MultimediaTechLab/YOLO](https://github.com/MultimediaTechLab/YOLO)
|
| 19 |
+
(release v1.0-alpha, file `v9-t.pt`).
|
| 20 |
+
Copyright (c) 2024 Kin-Yiu Wong and Hao-Tang Tsui. Licensed under the MIT License.
|
| 21 |
+
|
| 22 |
+
## Modifications
|
| 23 |
+
|
| 24 |
+
Backbone, neck and one-to-many head: state-dict key remapping only;
|
| 25 |
+
learned parameters unchanged from upstream.
|
| 26 |
+
|
| 27 |
+
One-to-one head (`head.one2one_cv2`, `head.one2one_cv3`): trained
|
| 28 |
+
from scratch on COCO 2017 with the rest of the network frozen.
|
| 29 |
+
|
| 30 |
+
mAP (COCO val2017, COCOeval): **mAP50-95 = 0.3410, mAP50 = 0.4777**.
|
| 31 |
+
|
| 32 |
+
See [LibreYOLO issue #84](https://github.com/LibreYOLO/libreyolo/issues/84)
|
| 33 |
+
and [PR #145](https://github.com/LibreYOLO/libreyolo/pull/145) for the recipe.
|
| 34 |
+
|
| 35 |
+
## License
|
| 36 |
+
|
| 37 |
+
MIT License. See the [`LICENSE`](./LICENSE) file in this repository.
|