https://github.com/open-mmlab/mmdetection/blob/dev-3.x/configs/yolox/yolox_s_8xb8-300e_coco.py#L175 Config is like following. base_lr = 0.01 optim_wrapper = dict( type='OptimWrapper', optimizer=dict( type='SGD',
A complete Exp file is atyolox_base.py.It may be too long to write for every exp, but you can inherit the base Exp file and only overwrite the changed part. Let's take theVOC Exp fileas an example. We selectYOLOX-Smodel here, so we should change the network depth and width. VO...
YOLOX is an anchor-free version of YOLO, with a simpler design but better performance! It aims to bridge the gap between research and industrial communities. For more details, please refer to ourreport on Arxiv. This repo is an implementation of PyTorch version YOLOX, there is also aMegEng...
请教一个问题,yolox输出解码过程如下图,对应的编码步骤在哪个位置 解码过程在yolo_head.py中的249-250行
YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/ - Megvii-BaseDetection/YOLOX
thank your contribution, I also encountered some problems when using this project, i need some suggestion, I use yolox-tiny to train my own VOC data, batch_size: 32, gpu_num:2, img_size:[224x224], an error occurs when the training reache...
File "/home/ubuntu/Project/YOLOX-main/yolox/data/datasets/datasets_wrapper.py", line 177, indel if self.cache and self.cache_type == "ram": AttributeError: 'VOCDetection' object has no attribute 'cache' Hahahdamowangclosed this ascompletedMar 1, 2023 ...
li@li-desktop:~/Desktop/YOLOX-main$ python3 tools/demo.py image -f exps/default/nano.py -c yolox_nano.pth --path assets/dog.jpg --conf 0.25 --nms 0.45 --tsize 640 --save_result --device gpu Traceback (most recent call last): File "/home/...
''' Env: windows10, vs2019, openvino 2020.3.194 Model used: YOLOX-S-nano, YOLOX-S downloaded from: https://github.com/Megvii-BaseDetection/YOLOX/tree/main/demo/OpenVINO/cpp Do I need to convert the model from onnx format to openvino type myself?
hi,professor: i test use cmd liks this: python3 tools/demo.py image -n yolox_tiny -c ../weights/yolox_tiny.pth.tar --path ../assets/dog.jpg --conf 0.3 --nms 0.65 --tsize 640 --save_result BUT! I GOT ERROR: result Traceback (most recent c...