From 35bae087dce1e88c66007907f9e1b6b5b2958f10 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 30 Aug 2018 10:27:25 -0700 Subject: Fix typo in low latency svdf model. PiperOrigin-RevId: 210934704 --- tensorflow/examples/speech_commands/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tensorflow/examples') diff --git a/tensorflow/examples/speech_commands/models.py b/tensorflow/examples/speech_commands/models.py index 4d1454be0d..c63d4c3c7d 100644 --- a/tensorflow/examples/speech_commands/models.py +++ b/tensorflow/examples/speech_commands/models.py @@ -634,7 +634,7 @@ def create_low_latency_svdf_model(fingerprint_input, model_settings, label_count = model_settings['label_count'] final_fc_weights = tf.get_variable( name='final_fc_weights', - initializer=tf.truncated_normal(stddev=0.01), + initializer=tf.truncated_normal_initializer(stddev=0.01), shape=[second_fc_output_channels, label_count]) final_fc_bias = tf.get_variable( name='final_fc_bias', -- cgit v1.2.3