--- license: mit base_model: - Ultralytics/YOLO11 pipeline_tag: image-segmentation --- # YOLOv11 Model This is a YOLOv11 model trained for object detection using the Ultralytics framework. ## Model Details - **Model Type**: YOLOv11 - **Framework**: PyTorch - **Training Dataset**: [Specify dataset, e.g., COCO or custom] - **Classes**: [List classes or number, e.g., 80 for COCO] - **License**: Apache-2.0 ## Usage ```python from ultralytics import YOLO model = YOLO('path/to/yolo11n.pt') results = model.predict('image.jpg') results[0].show()