-
Notifications
You must be signed in to change notification settings - Fork 7k
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
DenseNet FCN #131
Comments
Haha who can say no to that 😄 The original implementation is in Theano. We could probably use the saved weights for that model, but it may be better to train from scratch. It might make sense to hold off until the CamVid dataset is added (#90). |
Hi, @FuriouslyCurious I have an implementation of FC-DenseNet at head already. |
@FuriouslyCurious |
Thank you @felixgwu ! @ycszen FYI: DenseNet FCN code in GIST above ^ |
Thank you! @FuriouslyCurious |
How can i import the saved weight in the original implementation in Theano to the pytorch with the same architechture? @felixgwu |
@felixgwu Do you remember how far you where off from the original reported mIoU and accuracy by training from scratch? |
I found your results in FC-DenseNet issue 11. |
@EliasVansteenkiste and @felixgwu Check out the Keras Tiramisu implementation below: Developer @titu1994 used SubPixelConvolution instead of Deconvolution as default method for upsampling. Not sure if that helps accuracy, but worth trying. https://github.com/titu1994/Fully-Connected-DenseNets-Semantic-Segmentation |
If you want to use sub-pixel convolution for upscaling you can use the |
@felixgwu . Thank you for you code implementation of FC-DenseNet in pytorch. Recent, i want to reproduce the result about FC-DenseNet, but my loss does not converge at all. would you share me you dataLoader so that i can compare it with my code? and if i initialize the learning rate with 1e-3, the loss will be infinity. I am so puzzled with it . |
Hi @orashi and @gpleiss - thank you for adding DenseNet!
I was wondering if you have looked at DenseNet Fully Convolutional paper which gives phenomenal scores for segmentation : https://arxiv.org/pdf/1611.09326v1.pdf
I will owe you all a round of beers if you can consider implementing DenseNet FCN too.
Great day,
FC
The text was updated successfully, but these errors were encountered: