YOLO series
See original GitHub issueHi, Why each Yolo version refer to Yolo S file and also
_base_ = './yolox_s_8x8_300e_coco.py'
# model settings
model = dict(
backbone=dict(deepen_factor=0.67, widen_factor=0.75),
neck=dict(in_channels=[192, 384, 768], out_channels=192, num_csp_blocks=2),
bbox_head=dict(in_channels=192, feat_channels=192),
)
- Inside Yolo S file , model type is YoloX… instead of YoloS
model = dict(
type='YOLOX',
backbone=dict(type='CSPDarknet', deepen_factor=0.33, widen_factor=0.5),
neck=dict(
type='YOLOXPAFPN',
in_channels=[128, 256, 512],
out_channels=128,
num_csp_blocks=1),
bbox_head=dict(
type='YOLOXHead', num_classes=80, in_channels=128, feat_channels=128),
train_cfg=dict(assigner=dict(type='SimOTAAssigner', center_radius=2.5)),
# In order to align the source code, the threshold of the val phase is
# 0.01, and the threshold of the test phase is 0.001.
test_cfg=dict(score_thr=0.01, nms=dict(type='nms', iou_threshold=0.65)))
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Yolo (Ghanaian TV series) - Wikipedia
Yolo (You Only Live Once) is a Ghanaian teenage TV series. The series is a sequel of the Ghanaian TV series Things We...
Read more >YOLO: Crystal Fantasy (TV Series 2020– ) - IMDb
YOLO : Crystal Fantasy: Created by Michael Cusack. With Sarah Bishop, Todor Manojlovic, Michael Cusack, Michelle Brasier. The adventures of two Australian ...
Read more >YOLO TV Series (@yolotvseries) • Instagram photos and videos
YOLO Is An Award Winning Original TV Series That Addresses Socio-Cultural Factors Impeding Young People's Awareness of Reproductive Health Issues.
Read more >YOLO TV Series | New York NY - Facebook
YOLO TV Series, New York, New York. 54325 likes · 213 talking about this. YOLO is an award winning original TV series that...
Read more >[2107.08430] YOLOX: Exceeding YOLO Series in 2021 - arXiv
Abstract: In this report, we present some experienced improvements to YOLO series, forming a new high-performance detector -- YOLOX.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The folder
configs/yolox
contains the algorithm YOLOX with different sizes. YOLOX is the algorithm name, thes
inYOLOX-s
is size.