benediktkol/DDOS
Updated • 3.1k • 10
How to use vsham001/Yolo298B with ultralytics:
# Couldn't find a valid YOLO version tag.
# Replace XX with the correct version.
from ultralytics import YOLOvXX
model = YOLOvXX.from_pretrained("vsham001/Yolo298B")
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
model.predict(source=source, save=True)YOLO298B is a custom‑trained Ultralytics YOLO model (best.pt) built by Team 6 (SJSU).
It detects aerial classes in aerial imagery collected by autonomous drones.
| Attribute | Value |
|---|---|
| Architecture | YOLO‑v9‑S |
| Input size | 640 × 640 px |
| Classes | n |
| Checkpoint | 5.5 MB |
| Use‑case | ✅ Recommended | 🚫 Not recommended |
|---|---|---|
| Real‑time obstacle detection on UAVs | ✔️ | |
| Academic research / benchmarking | ✔️ | |
| Safety‑critical deployment w/o human | ❌ |
Dataset: benediktkol/DDOS – contains drone‑view images with obstacles (<brief description>).
Split: 80 % train · 10 % val · 10 % test
from ultralytics import YOLO
model = YOLO("vsham001/Yolo298B")
results = model("https://ultralytics.com/images/bus.jpg")
results[0].show()