Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,3 +11,32 @@ license: mit
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
# YoloV3 object detection model- Interactive Interface
|
| 17 |
+
|
| 18 |
+
This project Impliments a simple Gradio interface to perform inference on YoloV3 object detection.
|
| 19 |
+
|
| 20 |
+
## Task :
|
| 21 |
+
|
| 22 |
+
The task involves performing detection on the Pascal voc dataset using the YoloV3 model built with PyTorch and PyTorch Lightning.
|
| 23 |
+
|
| 24 |
+
## Files :
|
| 25 |
+
|
| 26 |
+
1. `requirements.txt`: Contains the necessary packages required for installation.
|
| 27 |
+
2. `model.py`: Contains the YoloV3 model architecture.
|
| 28 |
+
3. `YoloV3.pth`: Trained model checkpoint file containing model weights.
|
| 29 |
+
4. `examples/`: Folder containing example images (e.g., car.jpg, home.jpg, etc.).
|
| 30 |
+
5. `app.py`: Contains the Gradio code for the interactive interface. Users can select input images or examples of the model that detects objects.
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
## Implementation
|
| 34 |
+
|
| 35 |
+
The following features are implemented using Gradio:
|
| 36 |
+
|
| 37 |
+
1. **Upload and Select Images:** Users can upload new images or select from a set of example images.
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
## Usage
|
| 41 |
+
|
| 42 |
+
1. Run the `app.py` script to launch the interactive Gradio interface.
|