Models

Grounding DINO vs. DETIC

Both

Grounding DINO

and

DETIC

are commonly used in computer vision projects. Below, we compare and contrast

Grounding DINO

and

DETIC

.

  Grounding DINO DETIC
Date of Release Jan 07, 2022
Model Type Object Detection Instance Segmentation
Architecture
GitHub Stars 1400

Compare Grounding DINO and DETIC with Autodistill

Using Autodistill, you can compare Grounding DINO and DETIC on your own images in a few lines of code.

Here is an example comparison:

To start a comparison, first install the required dependencies:


pip install autodistill autodistill-grounding-dino autodistill-detic

Next, create a new Python file and add the following code:


from autodistill_grounding_dino import GroundingDINO
from autodistill_detic import DETIC

from autodistill.detection import CaptionOntology
from autodistill.utils import compare

ontology = CaptionOntology(
    {
        "solar panel": "solar panel",
    }
)

models = [
    GroundingDINO(ontology=ontology),
    DETIC(ontology=ontology)
]

images = [
    "/home/user/autodistill/solarpanel1.jpg",
    "/home/user/autodistill/solarpanel2.jpg"
]

compare(
    models=models,
    images=images
)

Above, replace the images in the `images` directory with the images you want to use.

The images must be absolute paths.

Then, run the script.

You should see a model comparison like this:

When you have chosen a model that works best for your use case, you can auto label a folder of images using the following code:


base_model.label(
  input_folder="./images",
  output_folder="./dataset",
  extension=".jpg"
)

Grounding DINO

Grounding DINO is a state-of-the-art zero-shot object detection model, developed by IDEA Research.

How to AugmentHow to LabelHow to Plot PredictionsHow to Filter PredictionsHow to Create a Confusion Matrix

DETIC

Detic is an open source segmentation model developed by Meta Research and released in 2022.

How to AugmentHow to LabelHow to Plot PredictionsHow to Filter PredictionsHow to Create a Confusion Matrix

Compare Grounding DINO to other models

Compare DETIC to other models

Deploy a computer vision model today

Join 250,000 developers curating high quality datasets and deploying better models with Roboflow.

Get started