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
First of all, thank you for your work. I was checking the code after reading the paper and have some doubts regarding the implementation.
The paper said that all datasets except for CIFAR-10-MIL used ResNet18. However, it seems that the CAMELYON model used camelyon_feat_projecter from AlexNet as the encoder, which is a linear layer with BatchNorm. I understand that the features were already extracted by SimCLR. Does this mean by the encoder in this case is just the feature_projecter? Additionally, the dataset_CAMELYON16_BasedOnFeat seems to be filtering patches, i.e. only considering positive patches in positive bags and negative patches in negative bags. Is there a reason behind that?
I am a bit confused about loading the pre-trained features part in dataset_CAMELYON16_BasedOnFeat.py. Specifically, lines 74-77 are shown below.
Also, I see that you are reading the pre-trained features on line 90. Could you clarify about the file structure of those files? (file formats, naming, directory structures, etc.)
ResNetv2 is implemented in the codebase but not used in the paper, is there a reason behind this?
The DSMIL+WENO implementation has SimCLR in it. If I understood correctly, the WENO framework will share a pre-trained encoder and will continue to update the weights in the encoder. I am considering using a pre-trained ResNet50 inside WENO, do you think this is a good idea?
I know it's a lot of questions. But it would be great if you could answer them. Again, thank you for your contributions!
The text was updated successfully, but these errors were encountered:
First of all, thank you for your work. I was checking the code after reading the paper and have some doubts regarding the implementation.
camelyon_feat_projecter
from AlexNet as the encoder, which is a linear layer with BatchNorm. I understand that the features were already extracted by SimCLR. Does this mean by the encoder in this case is just thefeature_projecter
? Additionally, thedataset_CAMELYON16_BasedOnFeat
seems to be filtering patches, i.e. only considering positive patches in positive bags and negative patches in negative bags. Is there a reason behind that?dataset_CAMELYON16_BasedOnFeat.py
. Specifically, lines 74-77 are shown below.WENO/Datasets_loader/dataset_CAMELYON16_BasedOnFeat.py
Lines 74 to 77 in baf0d8f
Also, I see that you are reading the pre-trained features on line 90. Could you clarify about the file structure of those files? (file formats, naming, directory structures, etc.)
ResNetv2
is implemented in the codebase but not used in the paper, is there a reason behind this?I know it's a lot of questions. But it would be great if you could answer them. Again, thank you for your contributions!
The text was updated successfully, but these errors were encountered: