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

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
fizyr avatar

fizyr/keras-retinanet

0
View on GitHub↗
4,388 Stars·1,920 Forks·Python·Apache-2.0·5 Aufrufe

Keras Retinanet

This project is a deep learning implementation of the RetinaNet architecture for detecting and classifying objects within images. Built as a Keras object detection framework and a TensorFlow computer vision tool, it provides a complete neural network implementation based on the RetinaNet paper.

The framework includes specialized components such as a Feature Pyramid Network and a focal loss function to handle object detection. It features a configurable backbone architecture and anchor-based bounding boxes to predict object locations across varying scales and aspect ratios.

The toolset covers the end-to-end workflow for computer vision, including training routines, performance evaluation, and model inference deployment. It provides data management utilities for importing and debugging image annotations from CSV and Pascal VOC formats, as well as tools for converting trained models into different formats for deployment.

Features

  • Object Detection - Implements a complete system for identifying and locating objects within images using bounding boxes and classification.
  • Object Detection Training - Implements a full RetinaNet training pipeline to teach neural networks to localize and classify objects in images.
  • Anchor Box Detections - Implements anchor box mechanisms and non-max suppression to predict precise object locations.
  • Multi-Scale Feature Pyramids - Uses a Feature Pyramid Network to aggregate hierarchical representations for detecting objects of varying sizes.
  • Focal Loss Calculators - Implements focal loss to down-weight easy examples and focus training on difficult object observations.
  • Neural Network Model Implementations - Provides a practical implementation of the RetinaNet architecture, including a Feature Pyramid Network and focal loss.
  • TensorFlow Model Development - Provides a comprehensive toolkit for developing and training object detection models within the TensorFlow ecosystem.
  • Object Detection Frameworks - Provides a comprehensive toolkit for implementing the RetinaNet object detection architecture.
  • Anchor Optimizers - Includes utilities to optimize anchor box dimensions based on dataset characteristics for improved detection accuracy.
  • Image Annotation Integration - Integrates user-provided image annotations from CSV and Pascal VOC into the training pipeline.
  • Inference Model Deployment - Converts trained networks into optimized formats for hardware execution and object detection inference.
  • Model Conversion Tools - Transforms trained regression and classification networks into optimized formats suitable for object detection inference.
  • Model Performance Evaluators - Quantifies the accuracy and precision of detection models by comparing predictions against ground truth test datasets.
  • Pre- and Post-Inference Transformations - Ships post-inference transformations that decode raw tensor outputs into human-readable bounding boxes.
  • Modular Backbone Architectures - Provides a modular backbone architecture allowing the base feature extraction network to be swapped.
  • Keras Model Implementations - Implements the detection architecture specifically using the Keras API for a practical object detection framework.
  • Vision Model Evaluation - Provides frameworks for assessing the accuracy and performance of trained object detection models.
  • Model Export Formats - Transforms trained models into different formats to ensure compatibility with various deployment runtimes.

Star-Verlauf

Star-Verlauf für fizyr/keras-retinanetStar-Verlauf für fizyr/keras-retinanet

KI-Suche

Entdecke weitere awesome Repositories

Beschreibe in einfachen Worten, was du brauchst — die KI bewertet tausende kuratierte Open-Source-Projekte nach Relevanz.

Start searching with AI

Open-Source-Alternativen zu Keras Retinanet

Ähnliche Open-Source-Projekte, sortiert nach der Anzahl der gemeinsamen Funktionen mit Keras Retinanet.
  • chenyuntc/simple-faster-rcnn-pytorchAvatar von chenyuntc

    chenyuntc/simple-faster-rcnn-pytorch

    4,034Auf GitHub ansehen↗

    This project is a PyTorch implementation of the Faster R-CNN architecture for object detection. It provides a framework for identifying multiple object classes and their corresponding bounding boxes within images using a deep learning system. The implementation includes a training pipeline for optimizing models on custom datasets and a utility for converting pretrained weights from external formats into a compatible structure for model initialization. The system covers a two-stage detection pipeline comprising a region proposal network and an ROI pooling layer. It incorporates multi-task los

    Jupyter Notebookcupyfaster-rcnnobject-detection
    Auf GitHub ansehen↗4,034
  • amdegroot/ssd.pytorchAvatar von amdegroot

    amdegroot/ssd.pytorch

    5,224Auf GitHub ansehen↗

    This is a PyTorch object detection framework that implements the Single Shot MultiBox Detector for identifying and localizing multiple objects within images and video. The project provides a neural network architecture designed for single-shot object detection, which predicts bounding boxes and class labels in one pass. The implementation includes a real-time object detector capable of processing live video streams to track and label objects across sequential frames. It also features a complete computer vision training pipeline for preparing image datasets and training model weights. The fra

    Pythoncomputer-visiondeep-learningimage-recognition
    Auf GitHub ansehen↗5,224
  • paddlepaddle/paddledetectionAvatar von PaddlePaddle

    PaddlePaddle/PaddleDetection

    14,243Auf GitHub ansehen↗

    PaddleDetection is an object detection framework designed for the end-to-end development, training, and deployment of computer vision models. It provides a comprehensive library of modular neural network architectures and pipelines that support object detection, instance segmentation, and multi-object tracking tasks. The project distinguishes itself through a configuration-driven approach that decouples model components like backbones and heads, allowing for the flexible assembly of custom vision workflows. It incorporates advanced techniques such as anchor-free detection logic, joint detecti

    Pythonblazefacedeepsortdetr
    Auf GitHub ansehen↗14,243
  • tensorpack/tensorpackAvatar von tensorpack

    tensorpack/tensorpack

    6,287Auf GitHub ansehen↗

    Tensorpack is a high-level TensorFlow neural network framework and research library designed for building and training deep learning models. It provides a collection of reproducible neural network architectures for computer vision, generative tasks, reinforcement learning, and natural language processing. The project distinguishes itself through a specialized deep learning data pipeline that uses pure Python for parallel data loading and streaming. It includes a multi-GPU training orchestrator for distributing workloads via data-parallel strategies and a dedicated interpretability toolkit for

    Python
    Auf GitHub ansehen↗6,287
Alle 30 Alternativen zu Keras Retinanet anzeigen→

Häufig gestellte Fragen

Was macht fizyr/keras-retinanet?

This project is a deep learning implementation of the RetinaNet architecture for detecting and classifying objects within images. Built as a Keras object detection framework and a TensorFlow computer vision tool, it provides a complete neural network implementation based on the RetinaNet paper.

Was sind die Hauptfunktionen von fizyr/keras-retinanet?

Die Hauptfunktionen von fizyr/keras-retinanet sind: Object Detection, Object Detection Training, Anchor Box Detections, Multi-Scale Feature Pyramids, Focal Loss Calculators, Neural Network Model Implementations, TensorFlow Model Development, Object Detection Frameworks.

Welche Open-Source-Alternativen gibt es zu fizyr/keras-retinanet?

Open-Source-Alternativen zu fizyr/keras-retinanet sind unter anderem: chenyuntc/simple-faster-rcnn-pytorch — This project is a PyTorch implementation of the Faster R-CNN architecture for object detection. It provides a… amdegroot/ssd.pytorch — This is a PyTorch object detection framework that implements the Single Shot MultiBox Detector for identifying and… paddlepaddle/paddledetection — PaddleDetection is an object detection framework designed for the end-to-end development, training, and deployment of… tensorpack/tensorpack — Tensorpack is a high-level TensorFlow neural network framework and research library designed for building and training… meituan/yolov6 — YOLOv6 is a single-stage deep learning framework designed for industrial object detection. It serves as a computer… matterport/mask_rcnn — This project is a TensorFlow and Keras implementation of the Mask R-CNN architecture. It provides a framework for…