MIL.pytorch icon indicating copy to clipboard operation
MIL.pytorch copied to clipboard

No such file model/coco_valid1_eval.pkl

Open SilencerChen opened this issue 6 years ago • 3 comments

I try to run the test code but couldn't find model/coco_valid1_eval.pkl file. Could you updata it ? Thanks so much.

SilencerChen avatar May 14 '18 09:05 SilencerChen

I have the same issue. @SilencerChen @gujiuxiang

YuanEZhou avatar Jun 19 '18 14:06 YuanEZhou

@SilencerChen @YuanEZhou, uploaded, pls find the file in Weiyun. Thanks.

gujiuxiang avatar Jun 27 '18 01:06 gujiuxiang

i have create a pkl file that can be loaded without coco_voc by only storing the .details.precision details.score numpy.array.

https://drive.google.com/open?id=1eRrH45xOj41__v2bXMVa8OGZ1Gj6NYze

using python 3 to load the python 2 pkl file:

with open(pickle_file_name, 'rb') as f:   d = cPickle.load(f, encoding='latin1')

but there's a problem i don't know why: i can get reasonable results by removing the softmax layer in the model.

another problem is that, to me, the output before softmax seems to be the noisy-OR pooling of each image region instance, which can be used to be the final output directly without the score matching of unknown meaning.

can someone explain?

winnechan avatar Mar 28 '19 14:03 winnechan