-
Notifications
You must be signed in to change notification settings - Fork 21
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
how to apply in PSPNet #1
Comments
I also encountered a similar situation.I don’t know how to deal with two situations: |
Hi @qbTrible, applying FReLU in the backbone is enough to obtain improvements. For the dataset question, besides the open datasets in our experiments, I have assisted others to apply the FReLU backbones on their own datasets (for example, face recognition datasets), which also show great improvements. To deal with your issue, could you please provide more detailed information?
|
Hi @bobo0810 , |
I use pytorch as follows:
` |
There is an ambiguity in our code. Which is the correct implementation? Thanks! @qbTrible @nmaac |
Right! |
Hi @bobo0810 , I suggest to use torch.max(x, x1) directly. Although the implementation using torch.stack seems to be correct but is weird and inefficient. |
@qbTrible , moreover, ResNet50-FReLU even outperforms ResNet-101-ReLU in our experiment, you could also try shallower ResNet with FReLU if you meet an overfitting problem in your task & dataset. |
OK,thank you! |
Hi,when I use FunnelAct in ResNet50 as the backbone of PSPNet with my own datasets,the mIoU is lower than the case of not use FunnelAct with the same epochs of 200. Is it necessary to use FunnelAct in PyramidPooling module of PSP? Whether it has different performance on different datasets?
The text was updated successfully, but these errors were encountered: