|
40 | 40 | RFDETRInstanceSegmentation, |
41 | 41 | RFDETRObjectDetection, |
42 | 42 | VitClassification, |
| 43 | + YOLO26InstanceSegmentation, |
| 44 | + YOLO26ObjectDetection, |
43 | 45 | YOLONASObjectDetection, |
44 | 46 | YOLOv5InstanceSegmentation, |
45 | 47 | YOLOv5ObjectDetection, |
|
53 | 55 | YOLOv11ObjectDetection, |
54 | 56 | YOLOv12ObjectDetection, |
55 | 57 | ) |
| 58 | +from inference.models.yolo26.yolo26_keypoints_detection import YOLO26KeypointsDetection |
56 | 59 | from inference.models.yolov8.yolov8_keypoints_detection import YOLOv8KeypointsDetection |
57 | 60 | from inference.models.yolov11.yolov11_keypoints_detection import ( |
58 | 61 | YOLOv11KeypointsDetection, |
|
111 | 114 | ("object-detection", "yolov12m"): YOLOv12ObjectDetection, |
112 | 115 | ("object-detection", "yolov12l"): YOLOv12ObjectDetection, |
113 | 116 | ("object-detection", "yolov12x"): YOLOv12ObjectDetection, |
| 117 | + ("object-detection", "yolo26"): YOLO26ObjectDetection, |
| 118 | + ("object-detection", "yolo26s"): YOLO26ObjectDetection, |
| 119 | + ("object-detection", "yolo26n"): YOLO26ObjectDetection, |
| 120 | + ("object-detection", "yolo26b"): YOLO26ObjectDetection, |
| 121 | + ("object-detection", "yolo26m"): YOLO26ObjectDetection, |
| 122 | + ("object-detection", "yolo26l"): YOLO26ObjectDetection, |
| 123 | + ("object-detection", "yolo26x"): YOLO26ObjectDetection, |
114 | 124 | ("object-detection", "rfdetr-base"): RFDETRObjectDetection, |
115 | 125 | ("object-detection", "rfdetr-large"): RFDETRObjectDetection, |
116 | 126 | ("object-detection", "rfdetr-nano"): RFDETRObjectDetection, |
|
163 | 173 | "instance-segmentation", |
164 | 174 | "yolov11x-seg", |
165 | 175 | ): YOLOv11InstanceSegmentation, |
| 176 | + ( |
| 177 | + "instance-segmentation", |
| 178 | + "yolo26n", |
| 179 | + ): YOLO26InstanceSegmentation, |
| 180 | + ( |
| 181 | + "instance-segmentation", |
| 182 | + "yolo26s", |
| 183 | + ): YOLO26InstanceSegmentation, |
| 184 | + ( |
| 185 | + "instance-segmentation", |
| 186 | + "yolo26m", |
| 187 | + ): YOLO26InstanceSegmentation, |
| 188 | + ( |
| 189 | + "instance-segmentation", |
| 190 | + "yolo26l", |
| 191 | + ): YOLO26InstanceSegmentation, |
| 192 | + ( |
| 193 | + "instance-segmentation", |
| 194 | + "yolo26x", |
| 195 | + ): YOLO26InstanceSegmentation, |
| 196 | + ( |
| 197 | + "instance-segmentation", |
| 198 | + "yolo26n-seg", |
| 199 | + ): YOLO26InstanceSegmentation, |
| 200 | + ( |
| 201 | + "instance-segmentation", |
| 202 | + "yolo26s-seg", |
| 203 | + ): YOLO26InstanceSegmentation, |
| 204 | + ( |
| 205 | + "instance-segmentation", |
| 206 | + "yolo26m-seg", |
| 207 | + ): YOLO26InstanceSegmentation, |
| 208 | + ( |
| 209 | + "instance-segmentation", |
| 210 | + "yolo26l-seg", |
| 211 | + ): YOLO26InstanceSegmentation, |
| 212 | + ( |
| 213 | + "instance-segmentation", |
| 214 | + "yolo26x-seg", |
| 215 | + ): YOLO26InstanceSegmentation, |
166 | 216 | ("keypoint-detection", "yolov11n"): YOLOv11KeypointsDetection, |
167 | 217 | ("keypoint-detection", "yolov11s"): YOLOv11KeypointsDetection, |
168 | 218 | ("keypoint-detection", "yolov11m"): YOLOv11KeypointsDetection, |
|
173 | 223 | ("keypoint-detection", "yolov11m-pose"): YOLOv11KeypointsDetection, |
174 | 224 | ("keypoint-detection", "yolov11l-pose"): YOLOv11KeypointsDetection, |
175 | 225 | ("keypoint-detection", "yolov11x-pose"): YOLOv11KeypointsDetection, |
| 226 | + ("keypoint-detection", "yolo26n"): YOLO26KeypointsDetection, |
| 227 | + ("keypoint-detection", "yolo26s"): YOLO26KeypointsDetection, |
| 228 | + ("keypoint-detection", "yolo26m"): YOLO26KeypointsDetection, |
| 229 | + ("keypoint-detection", "yolo26l"): YOLO26KeypointsDetection, |
| 230 | + ("keypoint-detection", "yolo26x"): YOLO26KeypointsDetection, |
| 231 | + ("keypoint-detection", "yolo26n-pose"): YOLO26KeypointsDetection, |
| 232 | + ("keypoint-detection", "yolo26s-pose"): YOLO26KeypointsDetection, |
| 233 | + ("keypoint-detection", "yolo26m-pose"): YOLO26KeypointsDetection, |
| 234 | + ("keypoint-detection", "yolo26l-pose"): YOLO26KeypointsDetection, |
| 235 | + ("keypoint-detection", "yolo26x-pose"): YOLO26KeypointsDetection, |
176 | 236 | ("instance-segmentation", "stub"): InstanceSegmentationModelStub, |
177 | 237 | ( |
178 | 238 | "instance-segmentation", |
|
0 commit comments