📋
docs.binaexperts.com
  • Introduction
  • Get Started
  • Organization
    • Create an Organization
    • Add Team Members
    • Role-Based Access Control
  • Datasets
    • Creating a Project
    • Uploading Data
      • Uploading Video
    • Manage Batches
    • Create a Dataset Version
    • Preprocessing Images
    • Creating Augmented Images
    • Add Tags to Images
    • Manage Categories
    • Export Versions
    • Health Check
    • Merge Projects and Datasets
    • Delete an Image
    • Delete a Project
  • annotate
    • Annotation Tools
    • Use BinaExperts Annotate
  • Train
    • Train
    • Framework
      • Tensorflow
      • PyTorch
      • NVIDIA TAO
      • TFLite
    • Models
      • YOLO
      • CenterNet
      • EfficientNet
      • Faster R-CNN
      • Single Shot Multibox Detector (SSD)
      • DETR
      • DETECTRON2 FASTER RCNN
      • RETINANET
    • dataset healthcheck
      • Distribution of annotations based on their size relative
      • Distribution of annotations based on their size relative
    • TensorBoard
    • Hyperparameters
    • Advanced Hyperparameter
      • YAML
      • Image Size
      • Validation input image size
      • Patience
      • Rectangular training
      • Autoanchor
      • Weighted image
      • multi scale
      • learning rate
      • Momentum
  • Deployment
    • Deployment
      • Legacy
      • Deployment model (Triton)
    • Introducing the BinaExperts SDK
  • ابزارهای نشانه گذاری
  • استفاده از نشانه گذاری بینااکسپرتز
  • 🎓آموزش مدل
  • آموزش
  • چارچوب ها
    • تنسورفلو
    • پایتورچ
    • انویدیا تاو
    • تنسورفلو لایت
  • مدل
    • یولو
    • سنترنت
    • افیشنت نت
    • R-CNN سریعتر
    • SSD
    • DETR
    • DETECTRON2 FASTER RCNN
  • تست سلامت دیتاست
    • توزیع اندازه نسبی
    • رسم نمودار توزیع
  • تنسوربرد
  • ابرمقادیر
  • ابرمقادیر پیشرفته
    • YAML (یامل)
    • اندازه تصویر
    • اعتبار سنجی تصاویر ورودی
    • انتظار
    • آموزش مستطیلی
  • مستندات فارسی
    • معرفی بینااکسپرتز
    • آغاز به کار پلتفرم بینااکسپرتز
  • سازماندهی
    • ایجاد سازمان
    • اضافه کردن عضو
    • کنترل دسترسی مبتنی بر نقش
  • مجموعه داده ها
    • ایجاد یک پروژه
    • بارگذاری داده‌ها
      • بارگذاری ویدیو
    • مدیریت دسته ها
    • ایجاد یک نسخه از مجموعه داده
    • پیش‌پردازش تصاویر
    • ایجاد تصاویر افزایش یافته
    • افزودن تگ به تصاویر
    • مدیریت کلاس‌ها
  • برچسب گذاری
    • Page 3
  • آموزش
    • Page 4
  • استقرار
    • Page 5
Powered by GitBook
On this page

Was this helpful?

  1. Train
  2. Models

YOLO

YOLO, which stands for "You Only Look Once," is a popular real-time object detection algorithm that identifies specific objects in images or videos. Unlike traditional object detection algorithms that rely on multiple stages or regions of interest, YOLO applies a single neural network to the entire image in a single pass. This enables YOLO to achieve real-time inference speeds, making it suitable for applications such as surveillance, autonomous vehicles, and video analysis.

The key features of YOLO include:

  1. Single Pass Detection: YOLO divides the input image into a grid and predicts bounding boxes and class probabilities directly from the grid cells. This allows YOLO to detect multiple objects in a single pass through the neural network, resulting in fast inference speeds.

  2. Unified Framework: YOLO is a unified framework that performs both object localization and classification simultaneously. Instead of separating these tasks into different stages, YOLO predicts bounding boxes and class probabilities directly from the input image, leading to efficient and accurate object detection.

  3. Anchor Boxes: YOLO uses anchor boxes to improve the accuracy of object localization. Anchor boxes are predefined shapes that represent different aspect ratios and scales of objects. By predicting offsets relative to these anchor boxes, YOLO can accurately localize objects of various sizes and shapes.

  4. Feature Pyramid: YOLO utilizes a feature pyramid network to capture multi-scale features from the input image. This enables YOLO to detect objects at different scales and resolutions, improving its performance on objects of various sizes.

  5. Versatility: YOLO is a versatile algorithm that can be applied to various tasks, including general object detection, pedestrian detection, vehicle detection, and more. Its real-time capabilities make it suitable for a wide range of applications in computer vision.

Overall, YOLO is a powerful and efficient object detection algorithm that offers real-time performance and high accuracy, making it widely used in both research and industry for a variety of computer vision tasks.

PreviousModelsNextCenterNet

Last updated 1 year ago

Was this helpful?