KaihuaTang / LVIS-for-mmdetection

support Large Vocabulary Instance Segmentation (LVIS) dataset for mmdetection
16 stars 3 forks source link

How to get results in validation set #1

Closed onexmaster closed 4 years ago

onexmaster commented 4 years ago

The lvis datasets validation dataset annotations file is has image name as COCO_val2014_000xx Do we have to rename them? Whenever i try to run the validation set as my test set. I get a cuda out of memory error. I am using your config file as the config file for mmedetector htc model I did follow all the instructions mentioned and trained the model for 2 epochs. But i cannot get mask AP and bbox Ap on the validation set. Any help would be appreciated

KaihuaTang commented 4 years ago

The first question, yes, we need to rename the images.

The second, I'm using 8 * P-100 (16G each) GPUs. If your gpu memory is less than 16G, it may cause cuda out of memory error (depending on what kind of model you choose).

About mask AP and bbox AP, maybe you forgot to add --validate option?

image

onexmaster commented 4 years ago

I had only 2 Tesla k80 gpus, that explains the cuda of memory issues. Thanks for the quick response.