Yash030 commited on
Commit
fe8ea34
·
verified ·
1 Parent(s): e965c0b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ metrics:
6
+ - accuracy
7
+ base_model:
8
+ - Ultralytics/YOLOv8
9
+ pipeline_tag: object-detection
10
+ ---
11
+ # Horizon Model - YOLOv8
12
+ This is a fine-tuned YOLOv8 model for object detection.
13
+
14
+ ## Model Usage
15
+ Load this model using `transformers` or `ultralytics`:
16
+
17
+ ```python
18
+ from ultralytics import YOLO
19
+
20
+ model = YOLO("Yash030/horizon")
21
+ results = model("image.jpg")