Views
No views yet
radio,
5G BS, LampPost, mmWave radio, streetlight — in one inference
pass. The combined release
model of the YOLOR detector family used for
the Look Once, Beam Twice mmWave V2X beam-management pipeline
(SECON 2026).
| Model | Source hardware / location | Hugging Face |
|---|---|---|
YOLOR-radio | Sivers Semiconductors 60 GHz mmWave Radio frontends (EVK06002) | cpnlab/YOLOR-radio |
YOLOR-5GBS | 5G small cells + co-located lamp/utility poles, captured in Downtown Lincoln, Nebraska, USA | cpnlab/YOLOR-5GBS |
YOLOR-comm-mmWave | Terragraph Sounders from Meta, deployed in indoor commercial spaces | cpnlab/YOLOR-comm-mmWave |
YOLOR-Streetlights | Urban streetlights on the University of Nebraska–Lincoln campus | cpnlab/YOLOR-Streetlights |
YOLOR (unified) | Union of all four sources above | this card |
Avhishek Biswas*, Apala Pramanik*, Eylem Ekici, Mehmet C. Vuran. "Look Once, Beam Twice: Camera-Primed Real-Time Double-Directional mmWave Beam Management for Vehicular Connectivity." (*equal contribution)

| Architecture | YOLOv11x, 85-class output head (COCO 80 + 5 custom) |
| Initialization | stock yolo11x.pt |
| Schedule | 200 epochs, cos_lr, close_mosaic=20, lr0=0.01 |
| Training data | union of all four YOLOR source domains (cots + outdoor + commercial + streetlight), ~10,800 custom train frames + 8,000 COCO replay |
| Custom classes | radio (80), 5G BS (81), LampPost (82), mmWave radio (83), streetlight (84) |
| Released checkpoint | last.pt |
1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4weights = hf_hub_download(repo_id="cpnlab/YOLOR", filename="last.pt")
5model = YOLO(weights)
6results = model.predict("path/to/image.jpg", conf=0.25)0–79 — the 80 standard COCO classes80 — radio81 — 5G BS82 — LampPost83 — mmWave radio84 — streetlight1@inproceedings{biswas2026look,
2 title = {Look Once, Beam Twice: Camera-Primed Real-Time Double-Directional
3 mmWave Beam Management for Vehicular Connectivity},
4 author = {Biswas, Avhishek and Pramanik, Apala and Ekici, Eylem and Vuran, Mehmet C.},
5 booktitle = {Proc. IEEE SECON},
6 year = {2026}
7}