Model Description

YOLOR: You Only Learn One Representation: Unified Network for Multiple Tasks.

YOLOR-Pip: Packaged version of the YOLOR repository

Paper Repo: Implementation of paper - YOLOR

Installation

pip install yolor

Yolov6 Inference

from yolor.helpers import Yolor

model = Yolor(
  cfg='yolor/cfg/yolor_w6.cfg',
  weights='kadirnar/yolor-w6',
  imgsz=640,
  device='cuda:0'
)

model.classes = None
model.conf = 0.25
model.iou_ = 0.45
model.show = False
model.save = True

model.predict('yolor/data/highway.jpg')

BibTeX Entry and Citation Info

@article{wang2021you,
 title={You Only Learn One Representation: Unified Network for Multiple Tasks},
 author={Wang, Chien-Yao and Yeh, I-Hau and Liao, Hong-Yuan Mark},
 journal={arXiv preprint arXiv:2105.04206},
 year={2021}
}
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The HF Inference API does not support object-detection models for yolor library.

Dataset used to train kadirnar/yolor_w6