-
Notifications
You must be signed in to change notification settings - Fork 476
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
About world_expo'10 dataset #17
Comments
@liwenxi I have two suggestions that may improve your performance on it.
Besides, according to my experience and the results of experiments, I find that the small models perform better than other big models (such as pre-trained model, VGG, ResNet and so on). For the detailed setting on WorldExpo, I will provide some code for it. Please watch it. |
Thank you for reply!
Now I used CSRNet to test. This model is modified from VGG16. When I train model with pre-trained on world_expo'10, the MAE of scene4 is about 10 at first, but other scene is not good. With the increase of epoch, scene4 is getting worse, but others are getting better. I also show out the outputs and density map with matplot. There are more errors in the upper part of the outputs. Maybe the body is recognized as person, but in fact head is out of ROI. So in density map there is no point. I will try more test to solve the problem. Thanks again. |
I does not conduct the reproduction of CSRNet on WorldExpo. However, I train other pretrained models on it, such as ResNet, VGG, deeplab v3 and so on. Their results can not outperform that of some small models from scratch, for example, ACSCP and SANet. I am very much looking forward to your progress on WorldExpo. |
Yeah, so I deleted these images before training.
Test set:
|
@liwenxi Thanks for your summary! |
@liwenxi Hello, have you ever reproduced the results of WorldExpo by using CSRNet. I delete the wrong images but still can't get the same result. I will appreciate it if you can help me. |
@yxxxxxxxx Sorry, I couldn't reproduce the results. |
Recently, I found another wrong image in this dataset. |
Recently, I try to use world_expo'10 dataset, but I found I'm hard to reduce the MAE of scene4. When MAE of scene1 is 1.5 and scene5 is 2.6, scene4 is 36.75.
I use train_frame to train and test_frame to test. ROI is used on both train and test. After ROI, I use
transform = transforms.Compose([transforms.ToTensor(),transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])])
to normalize. For density, I also add ROI and set sigma=0.2M(x).Is there anything else that needs attention?
The text was updated successfully, but these errors were encountered: