gujiuxiang / MIL.pytorch

PyTorch implementation of Multiple-instance learning
117 stars 29 forks source link

precision_score.pkl not included #1

Closed xiyaofu closed 6 years ago

xiyaofu commented 6 years ago

The precision_score.pkl is not included in the BaiduPan url. Could you please update it? @gujiuxiang

gujiuxiang commented 6 years ago

Hi, you can generate it with the code (in test.py).

if len(opt.load_precision_score) >0 : precision_score = pickle.load(open(opt.load_precision_score, 'rb')) else: precision_score = compute_precision_mapping(pt)

xiyaofu commented 6 years ago

@gujiuxiang Thank you! This issue can be closed now.

liuxx2016 commented 6 years ago

hello, when i run test.py, I get an error “no such file or directory: 'model/precision_score.pkl '”. How can i solve it? thanks