Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can not get the satisfactory result on caltech pedestrian detection #78

Open
liuwei16 opened this issue Jun 9, 2017 · 4 comments
Open

Comments

@liuwei16
Copy link

liuwei16 commented Jun 9, 2017

I follow the default parameters to train the models for caltech dataset in ./mscnn-7s-720, the final caffemodel is about 233.0MB, while the author's is about 348.3MB in ./mscnn-7s-720-pretrained, where is the problem ?
The detection result on my trained model is unsatisfactory.

@zhaoweicai
Copy link
Owner

For the model difference, have a look at #23

For unsatisfactory results, what is performance you got? I just re-run the exact experiments 4 times today, and the miss rate is 10.33$\pm$0.19. It looks stable to me. If you get the miss rate >12, most likely your experiments have some problems.

@liuwei16
Copy link
Author

Yes, thank you very much. Could you give me your experiment setting, like initial learning rate of two stages, the input size, with deconvolution layer, dimension conduction layer or no? Thank you very much.
By the way, the bounding box de-normalization is not conducted when testing your provided model, but is required when testing our traind model, I wonder what the difference is.

@thhung
Copy link

thhung commented Sep 14, 2018

@liuwei16 did you manage to get the same result 10.33 miss rate?

@thhung
Copy link

thhung commented Sep 14, 2018

Hello @zhaoweicai , I am evaluating your pretrained model on the Caltech dataset for 1xtest? For different evaluation code, I only can get around 22% miss rate meanwhile, I expected it is ~10%. Could you provide more details about your evaluation? Thanks.

The only path of your matlab code I changed to the format of the output:

fileID = fopen(['/path/to/output.txt'],'w');
for i=1:nImg
    detected = cell2mat(final_detect_boxes(i,:));
    for j=1:size(detected,1)
        bbx = mat2str(ceil(detected(j,2:5)));
        fprintf(fileID,[char(image_list(i).name) ' ' bbx(2:end-1) ' ' num2str(detected(j,6)) ' \n']); 
    end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants