-
Notifications
You must be signed in to change notification settings - Fork 62
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
Learning rate #9
Comments
I tried change the learning rate to 0.01,and the batchsize 4,the loss is decreased to 0.0403,only within one epoch(Iter:37000/39675,a epoch almost finised but failed),but the program often cause a error like this: Process finished with exit code 134 (interrupted by signal 6: SIGABRT) So,is there any parameters need to change?or any advice on the error? |
I tried change the learing rate to 0.01,and batchsize=4,and due to the limit of GPU resource,I set validating ... terminate called after throwing an instance of 'std::system_error' Process finished with exit code 134 (interrupted by signal 6: SIGABRT) the program can't finish a epoch,but the loss is decreased to 0.0403,is it accepted or need more epoch? |
@hardBird123, I trained by Adam setting initial learning rate as 0.001. But I didn't try to find the optimal learning rate. You can get better results than mine by adopting SGD or just following the method described in https://arxiv.org/pdf/1611.10080.pdf. |
@LeiyuanMa, Sorry, I can't help you with that error. Probably related to the memory leak. In my case, training epochs do not change the performance a lot. And I haven't tested training 15 epochs is the best for the network. |
ok, thanks. I want to confirm that the weights [ilsvrc-cls_rna-a1_cls1000_ep-0001.params] is the pretrained weights for training segmentation network ResNet38? |
@hardBird123, Yes, that is the right file for the segmentation network. |
thanks,so is the loss=0.0403 acceptable? |
which lr_type(fixed(default)/step/linear) should I choose when training the ResNet38 segmentation network? |
I don't know how to get the parameters of the Ours-ResNet segmentation network. Can you give a explain for the parameters ?Thanks.
The text was updated successfully, but these errors were encountered: