-
Notifications
You must be signed in to change notification settings - Fork 9.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Aborted (core dumped) when training htc using my own dataset #2639
Comments
From the error, it seems that the labels used for training the semantic head are greater than the prediction channels in the head. You might need to check the |
config file used`%%writefile /home/panick/lab/riyaj/mmlab_model/mmdetection/configs/cascade_mask_rcnn_x101_64x4d_fpn_1x-COPT.py model settingsmodel = dict( model training and testing settingstrain_cfg = dict( dataset settingsdataset_type = 'CocoDataset'
evaluation = dict(interval=1, metric=['bbox', 'segm']) optimizeroptimizer = dict(type='SGD', lr=0.0002, momentum=0.9, weight_decay=0.0001) learning policylr_config = dict( yapf:disablelog_config = dict( yapf:enableruntime settingstotal_epochs = 120 ` "/home/panick/lab/riyaj/mmlab_model
|
but same config run on diferent dataset of 2 classes run properly ? |
I want to train htc using my own dataset, but I meet Aborted (core dumped)
The command I run is
python tools/train.py configs/htc/htc_r50_fpn_1x.py --validate
I modify configs/htc/htc_r50_fpn_1x.py like this
box_head
andmask_head
semantic_head
, but I change it too.The environlent I use is
Error traceback
I can run cascade_mask_rcnn_r50_fpn_1x.py successfully using my own dataset. I guess problem may be in the semantic part. Thanks for your help!
The text was updated successfully, but these errors were encountered: