EfficientSAM + YOLO-World base model for use with Autodistill
Project description
Autodistill EfficientYOLOWorld Module
This repository contains the code supporting the EfficientYOLOWorld base model for use with Autodistill.
EfficientYOLOWorld is a combination of two models:
- YOLO-World, a zero-shot object detection model, and;
- EfficientSAM, an image segmentation model.
This model runs EfficientSAM on each bounding box region generated by YOLO-World. This allows you to retrieve both the bounding box and the segmentation mask for each object of interest in an image.
Read the full Autodistill documentation.
Read the EfficientYOLOWorld Autodistill documentation.
Installation
To use EfficientYOLOWorld with autodistill, you need to install the following dependency:
pip3 install autodistill-efficient-yolo-world
Quickstart
from autodistill_efficient_yolo_world import EfficientYOLOWorld
from autodistill.detection import CaptionOntology
import cv2
import supervision as sv
# define an ontology to map class names to our EfficientYOLOWorld prompt
# the ontology dictionary has the format {caption: class}
# where caption is the prompt sent to the base model, and class is the label that will
# be saved for that caption in the generated annotations
# then, load the model
base_model = EfficientYOLOWorld(ontology=CaptionOntology({"book": "book"}))
# predict on an image
result = base_model.predict("bookshelf.jpeg", confidence=0.1)
image = cv2.imread("bookshelf.jpeg")
mask_annotator = sv.MaskAnnotator()
annotated_frame = mask_annotator.annotate(
scene=image.copy(),
detections=result,
)
sv.plot_image(annotated_frame)
base_model.label("./context_images", extension=".jpeg")
License
EfficientSAM is licensed under an Apache 2.0 license.
YOLO-World is licensed under a GPL-3.0 license.
🏆 Contributing
We love your input! Please see the core Autodistill contributing guide to get started. Thank you 🙏 to all our contributors!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for autodistill-efficient-yolo-world-0.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63d7dd46963fae0a9279866857afbb3e89c0af4bc7f322166893575cb7dbdba1 |
|
MD5 | 567ac138f3f3e4f5118dc7ead82d442b |
|
BLAKE2b-256 | d149ff9e2c173c10f6e9364307acee4ff67a3ad438eac8050ccb1bc83fee2c1c |
Hashes for autodistill_efficient_yolo_world-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5e74eeae1cd5c150717eb59bc7705fdfbec3c79e6bf4d564f0db6cee1cc0c71 |
|
MD5 | 49023e8ba9087f36513c4928176ee240 |
|
BLAKE2b-256 | 3d37956e149c54e76307fa5f09da40fb267ed89f310fb72e2f7ec28380210c4d |