question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Hi, 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),

)

  1. 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:closed
  • Created 2 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
RangiLyucommented, Nov 29, 2021

The folder configs/yolox contains the algorithm YOLOX with different sizes. YOLOX is the algorithm name, the s in YOLOX-s is size.

0reactions
jshilongcommented, Dec 6, 2021
  1. For images
  2. You can not combine them by only modifying configs, you need to spend some time coding by referring to yolact
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found