hujiecpp / ISTR

ISTR: End-to-End Instance Segmentation with Transformers (https://arxiv.org/abs/2105.00637)
202 stars 28 forks source link

What is PATH_COMPONENTS ? #1

Closed Len-Li closed 3 years ago

Len-Li commented 3 years ago

Hi, thanks for your awesome work.

I try to retrain the network, while I found that cfg.MODEL.ISTR.PATH_COMPONENTS = "./datasets/coco/components/coco_2017_train_class_agnosticTrue_whitenTrue_sigmoidTrue_60.npz" However, I can't found it in this repo. How can I get it?

Thanks

hujiecpp commented 3 years ago

PATH_COMPONENTS is the parameters for PCA. It is located in: https://github.com/hujiecpp/ISTR/blob/master/projects/ISTR/LME/coco_2017_train_class_agnosticTrue_whitenTrue_sigmoidTrue_60_siz28.npz And I also updated the config file (https://github.com/hujiecpp/ISTR/blob/master/projects/ISTR/istr/config.py) for this issue, you can check the updated file for the details.

Len-Li commented 3 years ago

PATH_COMPONENTS is the parameters for PCA. It is located in: https://github.com/hujiecpp/ISTR/blob/master/projects/ISTR/LME/coco_2017_train_class_agnosticTrue_whitenTrue_sigmoidTrue_60_siz28.npz And I also updated the config file (https://github.com/hujiecpp/ISTR/blob/master/projects/ISTR/istr/config.py) for this issue, you can check the updated file for the details.

Thanks!