-
Notifications
You must be signed in to change notification settings - Fork 18.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
Added layer for learnable eltwise y=kx+b #2996
Conversation
@ducha-aiki , as per #3229 (comment)
|
@siddharthm83 Thanks, I will take a look on it. |
@siddharthm83, I have experienced it too in GPU mode, but after restarting training, it has gone. Don`t know reason for it yet... Logs are here: Prototxt are here: |
@ducha-aiki , the log link seems broken. When you say restarting training, it is gone, what do you exactly mean (are you restarting with a saved solverstate?) |
@siddharthm83 sorry, filenames changed after repo update. But it does`t matter - I have done 100 restarts in script and it seems code is broken - it recovers only 2 times :( So time for debugging for me |
@ducha-aiki , any luck in identifying the issue? No hurry, just checking. |
@siddharthm83 sorry, ICLR rebuttal deadline. Going to fix next week. |
@ducha-aiki , I think here might be the problem, not CblasTrans but CblasNoTrans.
|
@wuzifeng thanks! Looks like it was the cause. I will finish training caffenet with it and update PR. |
awesome, thanks @ducha-aiki and @wuzifeng |
4288a16
to
cf3177e
Compare
Travis crashes before it tries to compile anything, on stage of downloading packages. |
Replaced and merged in #3591. Thanks again for this work and your benchmarks @ducha-aiki! |
This layer could be used as building brick for custom learnable activation functions. PR is ready for review.