Autodistill YOLO-World Module
This repository contains the code supporting the YOLO-World base model for use with Autodistill.
YOLO-World, developed by Tencent's AI Lab, is a zero-shot object detection model that can run in close-to-real-time on powerful GPUs. You can provide arbitrary text prompts to detect objects in images, and the model will return bounding boxes and class labels for the objects it finds.
You can use YOLO-World in Autodistill to detect objects.
Read the full Autodistill documentation.
Read the YOLO-World Autodistill documentation.
Installation
To use YOLO-World with autodistill, you need to install the following dependency:
pip3 install autodistill-yolo-world
Quickstart
from autodistill_yolo_world import YOLOWorldModel
from autodistill.detection import CaptionOntology
from autodistill.utils import plot
import cv2
# define an ontology to map class names to our GroundingDINO 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 = YOLOWorldModel(ontology=CaptionOntology({"book": "book"}))
# predict on an image
result = base_model.predict("bookshelf.jpeg", confidence=0.1)
plot(
image=cv2.imread("./bookshelf.jpeg"),
classes=base_model.ontology.classes(),
detections=result
)
License
The YOLO-World model is released under a GPT-3.0 license.
🏆 Contributing
We love your input! Please see the core Autodistill contributing guide to get started. Thank you 🙏 to all our contributors!
Release files for autodistill-yolo-world 0.1.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| autodistill-yolo-world-0.1.2.tar.gz | 3.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| autodistill_yolo_world-0.1.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 6.3 kB
Release files / autodistill-yolo-world-0.1.2.tar.gz
| Download URL | autodistill-yolo-world-0.1.2.tar.gz |
|---|---|
| Size | 3.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2bcdda892f342f5bff7be1fad409b2cd60aaafebe3d66504b429b9fb71503412
|
|
BLAKE2b-256 checksum How to use checksums |
4e4f0a3039d5bf7511871e863de2e10a7ef467c361c623dccd12b82383f26fcb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.7
|
Release files / autodistill_yolo_world-0.1.2-py3-none-any.whl
| Download URL | autodistill_yolo_world-0.1.2-py3-none-any.whl |
|---|---|
| Size | 3.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6e70303a8dd8e6733ecebde805ad9fff7a019ca5c03b7ce79440c97785602447
|
|
BLAKE2b-256 checksum How to use checksums |
2d17ad1183f0224df14ffcc2267677c9c8b00a18a435f9af7e7dbd735ede2fe1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.7
|