Object Detection
ultralytics
PyTorch
English
Dutch
segmentation
vision
yolo11
pickle
roboflow-universe
Instructions to use ciCic/yolo11n-seg-bonnetjes with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use ciCic/yolo11n-seg-bonnetjes with ultralytics:
# Couldn't find a valid YOLO version tag. # Replace XX with the correct version. from ultralytics import YOLOvXX model = YOLOvXX.from_pretrained("ciCic/yolo11n-seg-bonnetjes") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Yolo11n bonnetjes
A YOLO11n segmentation model trained on receipts dataset.
Model summary
- Layers: 203 layers
- Parameters: 2,842,803
- GFLOPs: 10.4
- File size: 6 MB
Requirements
pip install ultralytics
Python
from ultralytics import YOLO
# Load model
model = YOLO("yolo11n-seg-bonnetjes.pt")
# Load image
image = Image.open('image.jpg')
# Inference
results = model.predict(
image,
imgsz=640,
conf=0.60,
)
# Display result
results[0].show()
Dataset
- Train: 4428
- Valid: 242
- Test: 146
Preprocessing (created w/ Roboflow)
- Auto-Orient: Applied
- Resize: 640x640
Augmentations (created w/ Roboflow)
- Outputs per training example: 3
- Flip: Horizontal
- 90° Rotate: Clockwise, Counter-Clockwise, Upside Down
- Crop: 0% Minimum Zoom, 20% Maximum Zoom
- Rotation: Between -15° and +15°
- Shear: ±10° Horizontal, ±10° Vertical
- Grayscale: Apply to 15% of images
- Saturation: Between -27% and +27%
- Brightness: Between -21% and +21%
- Exposure: Between -82% and +82%
- Noise: Up to 0.1% of pixels
Results
- Downloads last month
- 5
Model tree for ciCic/yolo11n-seg-bonnetjes
Base model
Ultralytics/YOLO11
