hi,
i am trying to enable logging for yolox nano, but when i start training i get this error :
File “/content/YOLOX/yolox/utils/logger.py”, line 206, in init
self.cats = val_dataset.cats
│ └ <yolox.data.datasets.voc.VOCDetection object at 0x7f6f1d379e10>
└ <yolox.utils.logger.WandbLogger object at 0x7f6f1e77ed10>
AttributeError: ‘VOCDetection’ object has no attribute ‘cats’
also this is my colab code:
!python tools/train.py -f exps/example/yolox_voc/yolox_voc_nano.py -d 1 -b 16 --fp16 -o --logger wandb wandb-project object-detectiontemp -c weights/yolox_nano.pth
could you please guide me or give me some hints on what should i do ?
because as i see there is a val_dataset variable, but i have no idea how do you fill that .
Hi @phoenix64 ! Engineer from W&B here. The reason for this issue is that currently we support only COCO style datasets in YOLOX. We are working on creating it for VOC as well