aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/speech_commands/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/examples/speech_commands/models.py')
-rw-r--r--tensorflow/examples/speech_commands/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/examples/speech_commands/models.py b/tensorflow/examples/speech_commands/models.py
index 65ae3b1511..4d1454be0d 100644
--- a/tensorflow/examples/speech_commands/models.py
+++ b/tensorflow/examples/speech_commands/models.py
@@ -302,7 +302,7 @@ def create_conv_model(fingerprint_input, model_settings, is_training):
label_count = model_settings['label_count']
final_fc_weights = tf.get_variable(
name='final_fc_weights',
- initializer=tf.truncated_normal_initializer,
+ initializer=tf.truncated_normal_initializer(stddev=0.01),
shape=[second_conv_element_count, label_count])
final_fc_bias = tf.get_variable(
name='final_fc_bias',