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_p6.cfg',
weights='kadirnar/yolor-p6',
imgsz=640,
device='cuda:0',
hf_model=True
)
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}
}
Inference API (serverless) does not yet support yolor models for this pipeline type.