Autodistill Grounding DINO Module
This repository contains the code supporting the Grounding DINO base model for use with Autodistill.
Grounding DINO is a zero-shot object detection model developed by IDEA Research. You can distill knowledge from Grounding DINO into a smaller model using Autodistill.
Read the Grounding DINO Autodistill documentation.
[!TIP] You can use Autodistill Grounding DINO on your own hardware, or use the Roboflow hosted version of Autodistill to label images in the cloud.
Installation
To use the Grounding DINO base model, you will need to install the following dependency:
pip3 install autodistill-grounding-dino
Quickstart
from autodistill_grounding_dino import GroundingDINO
from autodistill_yolov8 import YOLOv8
# 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 = GroundingDINO(ontology=CaptionOntology({"shipping container": "container"}))
# label all images in a folder called `context_images`
base_model.label("./context_images", extension=".jpeg")
License
The code in this repository is licensed under an Apache 2.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-grounding-dino 0.1.4
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-grounding-dino-0.1.4.tar.gz | 8.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| autodistill_grounding_dino-0.1.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 17.3 kB
Release files / autodistill-grounding-dino-0.1.4.tar.gz
| Download URL | autodistill-grounding-dino-0.1.4.tar.gz |
|---|---|
| Size | 8.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9c9c9e76fc20fe9e5c3c0f235998988a9146b723fda4cd312093c723e08e5bfd
|
|
BLAKE2b-256 checksum How to use checksums |
4630d0aaee19abcf8b4021c9bed596ebc2a4faaf14c286274a3bb15a074f7bf3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / autodistill_grounding_dino-0.1.4-py3-none-any.whl
| Download URL | autodistill_grounding_dino-0.1.4-py3-none-any.whl |
|---|---|
| Size | 9.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
80a0c6c9ab469362c7472160b8f73aea7b566c076e85de4f972c80c43fd03cd4
|
|
BLAKE2b-256 checksum How to use checksums |
31eec88e19f1e59211eb40cf43e9d5342160a44563264e178ccf8683a5f493fc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|