-
Notifications
You must be signed in to change notification settings - Fork 84
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
Weight Initialization, GNum class and NFData instances #69
base: master
Are you sure you want to change the base?
Conversation
Sorry, I'll get round to this soon. |
No worries, it took me quite some time as well. Btw, I checked the implemented learning algorithm and it seems to me that this is SGD with momentum and regularization. Is this correct? |
-- | Class for random initialization of a layer. This enables to use | ||
-- various initialization techniques for the networks. Every layer | ||
-- needs to implement this. | ||
class RandomLayer x where |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does pulling this into a separate class buy us anything?
Maybe UpdateLayer should just be renamed to BaseLayer or something and hold both?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I wanted to keep UpdateLayer
for backward compatibility. But renaming is fine as well. I am currently on vacation and look into the other issues soon.
see #51