Initial upload
Browse files
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2022 Jiacong Xu
|
| 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.
|
LibrePIDNetl-sem.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5acfe0d97b99b020def3db388e0bb1cb87fa518e026e2f5c08749f8371705095
|
| 3 |
+
size 148123814
|
NOTICE
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
LibrePIDNet weights
|
| 2 |
+
-------------------
|
| 3 |
+
|
| 4 |
+
This repository contains weights derived from PIDNet
|
| 5 |
+
(https://github.com/XuJiacong/PIDNet).
|
| 6 |
+
Copyright (c) 2022 Jiacong Xu.
|
| 7 |
+
Licensed under the MIT License.
|
| 8 |
+
|
| 9 |
+
Converted Cityscapes weights are MIT-licensed PIDNet weights. The Cityscapes
|
| 10 |
+
dataset itself has separate terms and is not redistributed by LibreYOLO.
|
README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: libreyolo
|
| 4 |
+
pipeline_tag: image-segmentation
|
| 5 |
+
tags:
|
| 6 |
+
- image-segmentation
|
| 7 |
+
- semantic-segmentation
|
| 8 |
+
- pidnet
|
| 9 |
+
- cityscapes
|
| 10 |
+
datasets:
|
| 11 |
+
- cityscapes
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# LibrePIDNetl-sem
|
| 15 |
+
|
| 16 |
+
PIDNet-L Cityscapes 19-class semantic segmentation weights converted for LibreYOLO.
|
| 17 |
+
|
| 18 |
+
## Source
|
| 19 |
+
|
| 20 |
+
Derived from [XuJiacong/PIDNet](https://github.com/XuJiacong/PIDNet) at commit 4c158cf24ce432f0a8cb43364fae38d93cee0dc3.
|
| 21 |
+
The source checkpoint is the official $(System.Collections.Hashtable.upstream) file from the upstream PIDNet model folder.
|
| 22 |
+
Copyright (c) 2022 Jiacong Xu. Licensed under the MIT License.
|
| 23 |
+
|
| 24 |
+
## Modifications
|
| 25 |
+
|
| 26 |
+
Converted with weights/convert_pidnet_weights.py in the [LibreYOLO source repository](https://github.com/LibreYOLO/libreyolo).
|
| 27 |
+
The converter strips common checkpoint prefixes, omits PIDNet training-only auxiliary heads, keeps retained runtime parameters unchanged, and wraps the state dict with LibreYOLO checkpoint metadata (model_family=pidnet, size=l, ask=semantic,
|
| 28 |
+
c=19, imgsz=1024).
|
| 29 |
+
|
| 30 |
+
## License
|
| 31 |
+
|
| 32 |
+
MIT License. See the [LICENSE](./LICENSE) and [NOTICE](./NOTICE) files in this repository.
|
| 33 |
+
|
| 34 |
+
## Dataset Note
|
| 35 |
+
|
| 36 |
+
Cityscapes has separate dataset terms and is not redistributed in this repository.
|