DETR module for use with Autodistill
Project description
Autodistill DETR Module
This repository contains the code supporting the DETR base model for use with Autodistill.
DETR is a transformer-based computer vision model you can use for object detection. Autodistill supports use of the DETR Resnet 50 model developed by Meta Research.
Read the full Autodistill documentation.
Read the DETR Autodistill documentation.
Installation
To use DETR with autodistill, you need to install the following dependency:
pip3 install autodistill-detr
Quickstart
from autodistill_detr import DETR
# define an ontology to map class names to our DETR 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 = DETR(
ontology=CaptionOntology(
{
"person": "person",
"a forklift": "forklift"
}
)
)
base_model.label("./context_images", extension=".jpg")
License
The code in this repository is licensed under an .
🏆 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
autodistill_detr-0.1.0.tar.gz
(3.0 kB
view hashes)
Built Distribution
Close
Hashes for autodistill_detr-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d417373d9fcdd81d70cb6129e8545e8314a2dc43f7b4edc77394dd049fe8ab2 |
|
MD5 | 1c375afbcaa2c807572c77e63848187c |
|
BLAKE2b-256 | b56ceabb66447d0df8544c6e5a16aec4fa571cf18d3849a068e089f454a0c94a |