Spaces:
Runtime error
Runtime error
A newer version of the Gradio SDK is available:
5.6.0
metadata
title: Yolo V3
emoji: π
colorFrom: gray
colorTo: blue
sdk: gradio
sdk_version: 3.40.1
app_file: app.py
pinned: false
license: mit
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
YoloV3 object detection model- Interactive Interface
This project Impliments a simple Gradio interface to perform inference on YoloV3 object detection.
Task :
The task involves performing detection on the Pascal voc dataset using the YoloV3 model built with PyTorch and PyTorch Lightning.
Files :
requirements.txt
: Contains the necessary packages required for installation.model.py
: Contains the YoloV3 model architecture.YoloV3.pth
: Trained model checkpoint file containing model weights.examples/
: Folder containing example images (e.g., car.jpg, home.jpg, etc.).app.py
: Contains the Gradio code for the interactive interface. Users can select input images or examples of the model that detects objects.
Implementation
The following features are implemented using Gradio:
- Upload and Select Images: Users can upload new images or select from a set of example images.
Usage
- Run the
app.py
script to launch the interactive Gradio interface.