You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When training yolox, we set the relevant parameters as follows:
......
parser.add_argument('--cfg', type=str, default='configs/yolox/yolox-s.yaml', help='model.yaml path')
parser.add_argument('--loss', type=str, default='origin', help='')
parser.add_argument('--auxotaloss', action='store_true', help='')
parser.add_argument('--otaloss', type=str, default='yolox', help='use yolov7 or yolox')
.......
After training, I found that val / box _ loss, val / obj _ loss and val / cls _ loss in runs / train / exp / results.csv are always 0.
Why is this? How should I solve this problem ?
The text was updated successfully, but these errors were encountered:
When training yolox, we set the relevant parameters as follows:
......
parser.add_argument('--cfg', type=str, default='configs/yolox/yolox-s.yaml', help='model.yaml path')
parser.add_argument('--loss', type=str, default='origin', help='')
parser.add_argument('--auxotaloss', action='store_true', help='')
parser.add_argument('--otaloss', type=str, default='yolox', help='use yolov7 or yolox')
.......
After training, I found that val / box _ loss, val / obj _ loss and val / cls _ loss in runs / train / exp / results.csv are always 0.
Why is this? How should I solve this problem ?
The text was updated successfully, but these errors were encountered: