-
Notifications
You must be signed in to change notification settings - Fork 41
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
details #14
Comments
I can't find the label_rev. Could you help me?@liutinglt @eng100200 |
In the train dataset lable_rev are already provided |
Please download imagenet pretrained resent-101, label files of edge and the trained models from baidu drive or Google drive, and put it into dataset folder. |
|
@BEYBB7 Just flip the labels horizontally. NOTE, for the flipped label, you must swap the left and right label. |
Have you provided the reversed images? I didn't find them@liutinglt |
@BEYBB7 I haven't provided, as it's easy to generate by your own. |
Thank you!Got it |
@liutinglt |
LIP_CE2P_train.pth...model obtained using the training images only LIP_CE2P_trainVal_321_681.pth ,,,,,model obtained using the only validation images as training images LIP_CE2P_train_473.pth model after resizing the images to 473 x 473 |
Could you tell the detail of your baseline-resnet101 when you implement it? Especially, the part of decoder? @liutinglt |
@liutinglt Dear ting, I have read your paper and it is an excellent job! |
@BEYBB7 The baseline performance is obtained by predicting from layer4 module with 1X1 CONV directly. Remove layer5, edgelayer , layer6, layer7 in models.py, and replace with nn.Conv2d(2048, num_classes, kernel_size=1, padding=0, dilation=1, bias=True) |
@zzw1123 The pretriained model is converted from deeplab_V2, which has been pretrained on MS-COCO dataset. It's provided in https://github.com/speedinghzl/Pytorch-Deeplab and https://github.com/isht7/pytorch-deeplab-resnet |
Is there any different setting? I‘can't implement your result -- almost 48. @liutinglt |
@BEYBB7 Me, neither. And the mIoU is only 35.47%, what is your result? |
About 41% |
@BEYBB7 Do you use the same parameters as those in the paper? |
Yes,I don't change any parameter. |
@BEYBB7 That is confusing... |
@BEYBB7 @zzw1123 I cannot reproduce the results either. BTW, May I know how many GPUs did you use? |
@GengDavid When I tried to re-implement the baseline result, I used 5 gpus and the same lr as paper mentioned. How about you? |
@YOKE @eng100200 @zzw1123 @GengDavid As there are some strange problems with Pytorch 0.3.1, please use the updated code with Pytorch 0.4.1. |
@YOKE The modules is deleted in this version. Please build the libs following Readme, and use the 'CE2P.py' in 'networks' |
|
Is there something different and I need to check something? @liutinglt |
@liutinglt My code got stucked during forward process. And I found it stops before layer4 in resnet101. Do you know why ? |
Have you met my error--undefined symbol PyInt_FromLong? |
@YOKE Did you delete the libs/_ext, and rebuild it by yourself? |
@zzw1123 First, you can try smaller batch size. |
@liutinglt Thanks and after changing batch size from 24 to 15, it goes well. |
@liutinglt Hi, me again. I found that during training process, the Utilization of GPU may be 0% sometimes, is it because of the processing of the images such as scaling and affine transform? |
Hi, where did you find the pretrained models of LIP_CE2P_train.pth, LIP_CE2P_trainVal_321_681.pth, LIP_CE2P_train_473.pth ? I can not find a link to download them. |
The project has been updated and the link has been deleted. |
Could you please explain the label_rev and how to get them? And how I know if the native CUDA implementation of InPlace-ABN succeeds?Thanks for your reply!
The text was updated successfully, but these errors were encountered: