├── .github └── workflows │ ├── discussion.yaml │ └── pr.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cfg ├── classify │ ├── convnext_tiny.yaml │ ├── efficientnet_b0.yaml │ ├── mobilenet_v3_large.yaml │ └── swin_t.yaml ├── detect │ ├── convnext_tiny.yaml │ ├── mobilenet_v3_large-fpn.yaml │ ├── mobilenet_v3_small-fpn.yaml │ ├── resnet101.yaml │ ├── swin_t-fpn.yaml │ ├── swin_t.yaml │ ├── yolo11-p2.yaml │ └── yolo11-p6.yaml ├── obb │ ├── convnext_tiny.yaml │ ├── swin_t-fpn.yaml │ ├── swin_t.yaml │ ├── yolo11-p2.yaml │ └── yolo11-p6.yaml ├── pose │ ├── convnext_tiny.yaml │ ├── swin_t-fpn.yaml │ ├── swin_t.yaml │ ├── yolo11-p2.yaml │ └── yolo11-p6.yaml └── segment │ ├── convnext_tiny.yaml │ ├── swin_t-fpn.yaml │ ├── swin_t.yaml │ ├── yolo11-p2.yaml │ └── yolo11-p6.yaml └── scripts ├── parse_metadata.py ├── requirements.txt ├── update_yaml.py └── validate_yaml.py /.github/workflows/discussion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/.github/workflows/discussion.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/README.md -------------------------------------------------------------------------------- /cfg/classify/convnext_tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/classify/convnext_tiny.yaml -------------------------------------------------------------------------------- /cfg/classify/efficientnet_b0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/classify/efficientnet_b0.yaml -------------------------------------------------------------------------------- /cfg/classify/mobilenet_v3_large.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/classify/mobilenet_v3_large.yaml -------------------------------------------------------------------------------- /cfg/classify/swin_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/classify/swin_t.yaml -------------------------------------------------------------------------------- /cfg/detect/convnext_tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/convnext_tiny.yaml -------------------------------------------------------------------------------- /cfg/detect/mobilenet_v3_large-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/mobilenet_v3_large-fpn.yaml -------------------------------------------------------------------------------- /cfg/detect/mobilenet_v3_small-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/mobilenet_v3_small-fpn.yaml -------------------------------------------------------------------------------- /cfg/detect/resnet101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/resnet101.yaml -------------------------------------------------------------------------------- /cfg/detect/swin_t-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/swin_t-fpn.yaml -------------------------------------------------------------------------------- /cfg/detect/swin_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/swin_t.yaml -------------------------------------------------------------------------------- /cfg/detect/yolo11-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/yolo11-p2.yaml -------------------------------------------------------------------------------- /cfg/detect/yolo11-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/detect/yolo11-p6.yaml -------------------------------------------------------------------------------- /cfg/obb/convnext_tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/obb/convnext_tiny.yaml -------------------------------------------------------------------------------- /cfg/obb/swin_t-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/obb/swin_t-fpn.yaml -------------------------------------------------------------------------------- /cfg/obb/swin_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/obb/swin_t.yaml -------------------------------------------------------------------------------- /cfg/obb/yolo11-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/obb/yolo11-p2.yaml -------------------------------------------------------------------------------- /cfg/obb/yolo11-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/obb/yolo11-p6.yaml -------------------------------------------------------------------------------- /cfg/pose/convnext_tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/pose/convnext_tiny.yaml -------------------------------------------------------------------------------- /cfg/pose/swin_t-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/pose/swin_t-fpn.yaml -------------------------------------------------------------------------------- /cfg/pose/swin_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/pose/swin_t.yaml -------------------------------------------------------------------------------- /cfg/pose/yolo11-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/pose/yolo11-p2.yaml -------------------------------------------------------------------------------- /cfg/pose/yolo11-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/pose/yolo11-p6.yaml -------------------------------------------------------------------------------- /cfg/segment/convnext_tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/segment/convnext_tiny.yaml -------------------------------------------------------------------------------- /cfg/segment/swin_t-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/segment/swin_t-fpn.yaml -------------------------------------------------------------------------------- /cfg/segment/swin_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/segment/swin_t.yaml -------------------------------------------------------------------------------- /cfg/segment/yolo11-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/segment/yolo11-p2.yaml -------------------------------------------------------------------------------- /cfg/segment/yolo11-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/cfg/segment/yolo11-p6.yaml -------------------------------------------------------------------------------- /scripts/parse_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/scripts/parse_metadata.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/update_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/scripts/update_yaml.py -------------------------------------------------------------------------------- /scripts/validate_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y-T-G/community/HEAD/scripts/validate_yaml.py --------------------------------------------------------------------------------