awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
fundamentalvision avatar

fundamentalvision/Deformable-DETR

0
View on GitHub↗
3,895 stars·612 forks·Python·apache-2.0·15 views

Deformable DETR

Deformable-DETR is an object detection system for computer vision that uses a transformer-based encoder-decoder architecture. It identifies and locates objects within images by representing potential targets as a set of learnable queries.

The project employs sampling-based attention to restrict attention to a small set of points around a reference, reducing computational complexity and speeding up convergence. It further utilizes multi-scale feature fusion to detect objects of varying sizes within a single frame.

The system includes capabilities for training models across multiple GPU clusters using distributed data parallelism and evaluating detection precision against standard benchmark datasets.

Features

  • Deformable Attention - Implements deformable attention by sampling a small set of points around a reference to reduce complexity.
  • Object Detection - Identifies and locates specific objects within images using bounding boxes and classification.
  • Detection Model Training - Trains deep learning models to identify and locate multiple objects within images using transformer architectures.
  • Multi-Scale Feature Pyramids - Uses multi-scale feature pyramids to detect objects of varying sizes within a single image frame.
  • Transformer-Based Architectures - Utilizes a transformer-based encoder-decoder architecture to generate object queries for set prediction.
  • Object Query Mechanisms - Employs learnable object queries that interact via attention to predict bounding boxes and object classes.
  • Data-Parallel Training - Provides data-parallel training to synchronize gradients across multiple GPU nodes for faster convergence.
  • Hungarian Matching Losses - Implements bipartite matching losses to assign predicted boxes to ground truth objects without hand-crafted anchors.
  • GPU Training Accelerators - Accelerates training speed by parallelizing workloads across multiple GPU clusters.
  • Distributed Training - Scales the training of the object detection model across multiple compute nodes.
  • Object Detection - Deformable transformers for end-to-end object detection.
  • Object Detection and Segmentation - Deformable transformers for end-to-end object detection.

Star history

Star history chart for fundamentalvision/deformable-detrStar history chart for fundamentalvision/deformable-detr

How this analysis was created: This summary and feature list are AI-generated from collected project material and can contain mistakes. Stars, license and language are imported from GitHub. Inclusion does not mean that we have tested or audited this project. Check the source documentation for any feature you depend on. Learn more on our About page.

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Frequently asked questions

What does fundamentalvision/deformable-detr do?

Deformable-DETR is an object detection system for computer vision that uses a transformer-based encoder-decoder architecture. It identifies and locates objects within images by representing potential targets as a set of learnable queries.

What are the main features of fundamentalvision/deformable-detr?

The main features of fundamentalvision/deformable-detr are: Deformable Attention, Object Detection, Detection Model Training, Multi-Scale Feature Pyramids, Transformer-Based Architectures, Object Query Mechanisms, Data-Parallel Training, Hungarian Matching Losses.

Which projects share features with fundamentalvision/deformable-detr?

Projects with overlapping indexed features include: facebookresearch/detr — This project provides a transformer-based object detection model that treats the task as a direct set prediction… eriklindernoren/pytorch-yolov3 — This project is a PyTorch implementation of the YOLOv3 object detection architecture. It functions as a real-time… microsoft/table-transformer — Table Transformer is a deep learning framework designed for document layout analysis and the automated extraction of… jwyang/faster-rcnn.pytorch — This project is a PyTorch object detection framework that implements the Faster R-CNN architecture. It serves as a… rbgirshick/py-faster-rcnn — This project is a Python implementation of the Faster R-CNN object detection framework. It serves as a convolutional… ultralytics/yolov3 — This is a real-time object detection framework built on the YOLOv3 architecture, implemented in PyTorch. It provides a…

Projects sharing features with Deformable DETR

These projects share indexed features with Deformable DETR. Shared tags can include platform or build tooling; verify the primary use case before treating a result as a replacement.
  • facebookresearch/detrfacebookresearch avatar

    facebookresearch/detr

    15,305View on GitHub↗

    This project provides a transformer-based object detection model that treats the task as a direct set prediction problem. It implements a vision system capable of predicting bounding boxes and class labels for objects within an image, as well as frameworks for instance and panoptic segmentation. The architecture utilizes a transformer encoder and decoder to perform end-to-end set prediction, employing a Hungarian matcher to assign predicted boxes to ground truth objects. It incorporates a convolutional backbone for feature extraction and a system of learnable object queries to probe image loc

    Python
    View on GitHub↗15,305
  • eriklindernoren/pytorch-yolov3eriklindernoren avatar

    eriklindernoren/PyTorch-YOLOv3

    7,439View on GitHub↗

    This project is a PyTorch implementation of the YOLOv3 object detection architecture. It functions as a real-time object detector and computer vision framework designed to identify and locate multiple objects within images using bounding boxes and class labels. The system allows for both the use of pretrained weights for immediate image analysis and the training of custom models using datasets with bounding box annotations. It provides a programmatic interface to integrate detection capabilities directly into other software applications. The framework includes tools for model evaluation to m

    Python
    View on GitHub↗7,439
  • microsoft/table-transformermicrosoft avatar

    microsoft/table-transformer

    2,916View on GitHub↗

    Table Transformer is a deep learning framework designed for document layout analysis and the automated extraction of tabular data from unstructured images and documents. It utilizes a transformer-based architecture to perform object detection, identifying table boundaries and internal grid structures to convert visual information into machine-readable formats. The project distinguishes itself by employing a global optimization strategy for bipartite matching, which eliminates the need for traditional non-maximum suppression during the detection process. By leveraging multi-scale feature extra

    Pythontable-detectiontable-extractiontable-functional-analysis
    View on GitHub↗2,916
  • jwyang/faster-rcnn.pytorchjwyang avatar

    jwyang/faster-rcnn.pytorch

    7,859View on GitHub↗

    This project is a PyTorch object detection framework that implements the Faster R-CNN architecture. It serves as a vision model for predicting precise bounding boxes around multiple objects within images and live video feeds. The system is optimized for multi-GPU training to reduce the time required for model convergence. It utilizes a GPU-accelerated design to handle the training and inference of complex detection networks. The framework covers the full object detection lifecycle, including custom network training and inference for static images and real-time video streams. It includes capa

    Python
    View on GitHub↗7,859
  • Compare all 30 related projects→