Object Detection
ultralytics
computer-vision
yolov8
vehicle-detection
traffic-analysis
highway-monitoring
Instructions to use vietnguyennn0705/highway-vehicle-detection-code with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use vietnguyennn0705/highway-vehicle-detection-code with ultralytics:
from ultralytics import YOLOvv8 model = YOLOvv8.from_pretrained("vietnguyennn0705/highway-vehicle-detection-code") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Nguyễn Quốc Việt commited on
Upload dataset_configs/finetune_data.yaml with huggingface_hub
Browse files
dataset_configs/finetune_data.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
path: new_finetunedata
|
| 2 |
+
train: train/images
|
| 3 |
+
val: train/images
|
| 4 |
+
test: train/images
|
| 5 |
+
|
| 6 |
+
nc: 8
|
| 7 |
+
names:
|
| 8 |
+
- auto
|
| 9 |
+
- bus
|
| 10 |
+
- car
|
| 11 |
+
- lcv
|
| 12 |
+
- motorcycle
|
| 13 |
+
- multiaxle
|
| 14 |
+
- tractor
|
| 15 |
+
- truck
|