Skip to content
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

Dense layers use relu with xavier initialization #195

Open
saydemr opened this issue Mar 12, 2023 · 0 comments
Open

Dense layers use relu with xavier initialization #195

saydemr opened this issue Mar 12, 2023 · 0 comments

Comments

@saydemr
Copy link

saydemr commented Mar 12, 2023

It is known that He initialization works better with ReLU since Xavier kill half of the input. So, in layers.py

self.vars['weights'] = tf.get_variable('weights', shape=(input_dim, output_dim),
                                         dtype=tf.float32, 
                                         initializer=tf.contrib.layers.variance_scaling_initializer(),
                                         regularizer=tf.contrib.layers.l2_regularizer(FLAGS.weight_decay))

JFR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant