Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
# YOLO Custom Model
|
3 |
+
|
4 |
+
This is a YOLO model trained on custom data.
|
5 |
+
|
6 |
+
## Model Description
|
7 |
+
|
8 |
+
- Model Type: YOLO
|
9 |
+
- Training Data: Custom Dataset
|
10 |
+
- Input: Images
|
11 |
+
- Output: Bounding boxes with class predictions
|
12 |
+
|
13 |
+
## Usage
|
14 |
+
|
15 |
+
```python
|
16 |
+
from ultralytics import YOLO
|
17 |
+
|
18 |
+
# Load the model
|
19 |
+
model = YOLO('model.pt')
|
20 |
+
|
21 |
+
# Make predictions
|
22 |
+
results = model('image.jpg')
|
23 |
+
```
|
24 |
+
|
25 |
+
## Training Details
|
26 |
+
|
27 |
+
- Framework: Ultralytics YOLOv8
|
28 |
+
- Training Device: cuda
|